Skip to content

Instantly share code, notes, and snippets.

@hagberg
Created October 28, 2012 20:20
Show Gist options
  • Save hagberg/3969750 to your computer and use it in GitHub Desktop.
Save hagberg/3969750 to your computer and use it in GitHub Desktop.
modified GraphML
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
<VersionInfo createdBy="Maltego Radium" subtitle="" version="3.2.1.3453"/>
<key for="graphml" id="d0" yfiles.type="resources"/>
<key for="port" id="d1" yfiles.type="portgraphics"/>
<key for="port" id="d2" yfiles.type="portgeometry"/>
<key for="port" id="d3" yfiles.type="portuserdata"/>
<key attr.name="MaltegoEntity" for="node" id="d4" attr.type="string"/>
<key for="node" id="d5" yfiles.type="nodegraphics"/>
<key attr.name="MaltegoLink" for="edge" id="d6" attr.type="string"/>
<key for="edge" id="d7" yfiles.type="edgegraphics"/>
<MaltegoEntity id="maltego.Phrase" displayName="Phrase" displayNamePlural="Phrases" description="Any text or part thereof" category="Personal" smallIconResource="Phrase" largeIconResource="Phrase" allowedRoot="true" conversionOrder="10000" visible="true">
<Properties value="text">
<Groups/>
<Fields>
<Field name="text" type="string" nullable="true" hidden="false" readonly="false" displayName="Text">
<SampleValue>Some phrase</SampleValue>
</Field>
</Fields>
</Properties>
</MaltegoEntity>
<graph edgedefault="directed" id="G">
<node id="n0">
<data key="d4">
<mtg:MaltegoEntity xmlns:mtg="http://maltego.paterva.com/xml/mtgx" type="maltego.Phrase">
<mtg:Properties>
<mtg:Property displayName="Text" hidden="false" name="text" nullable="true" readonly="false" type="string">
<mtg:Value>simple one node graph</mtg:Value>
</mtg:Property>
</mtg:Properties>
</mtg:MaltegoEntity>
</data>
<data key="d5">
<mtg:EntityRenderer xmlns:mtg="http://maltego.paterva.com/xml/mtgx">
<mtg:Position x="618.0" y="459.0"/>
</mtg:EntityRenderer>
</data>
</node>
</graph>
<data key="d0">
<y:Resources/>
</data>
</graphml>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment