Skip to content

Instantly share code, notes, and snippets.

@peterneubauer
Created May 10, 2012 09:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peterneubauer/2652088 to your computer and use it in GitHub Desktop.
Save peterneubauer/2652088 to your computer and use it in GitHub Desktop.
Graphviz output
digraph Neo {
node [
fontname = "Bitstream Vera Sans"
shape = "Mrecord"
fontsize = "8"
]
edge [
fontname = "Bitstream Vera Sans"
fontsize = "8"
]
N4 [
label = "{Node\[4\]|'name' = 'Emil Eifrém' : String\l'age' = 30 : int\l}"
]
N4 -> N5 [
label = "KNOWS\n'since' = '2003-08-17' : String\l"
]
N6 -> N4 [
label = "KNOWS\n"
]
N5 -> N4 [
label = "WORKS_FOR\n"
]
N5 [
label = "{Node\[5\]|'name' = 'Tobias \"thobe\" Ivarsson' : String\l'age' = 23 : int\l'hours' = [10, 10, 4, 4, 0] : int[]\l}"
]
N5 -> N6 [
label = "KNOWS\n"
]
N6 [
label = "{Node\[6\]|'!\<\>)' = '!\<\>)' : String\l'name' = '!\<\>Johan \\'\\\\n00b\\' !\<\>Svensson' : String\l}"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment