Created
August 12, 2011 18:27
-
-
Save spmallette/1142635 to your computer and use it in GitHub Desktop.
JSON from GraphJSONWriter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"graph": { | |
"vertices": [ | |
{ | |
"name": "lop", | |
"lang": "java", | |
"_id": "3", | |
"_type": "vertex" | |
}, | |
{ | |
"name": "vadas", | |
"age": 27, | |
"_id": "2", | |
"_type": "vertex" | |
}, | |
{ | |
"name": "marko", | |
"age": 29, | |
"_id": "1", | |
"_type": "vertex" | |
}, | |
{ | |
"name": "peter", | |
"age": 35, | |
"_id": "6", | |
"_type": "vertex" | |
}, | |
{ | |
"name": "ripple", | |
"lang": "java", | |
"_id": "5", | |
"_type": "vertex" | |
}, | |
{ | |
"name": "josh", | |
"age": 32, | |
"_id": "4", | |
"_type": "vertex" | |
} | |
], | |
"edges": [ | |
{ | |
"weight": 1, | |
"_id": "10", | |
"_type": "edge", | |
"_outV": "4", | |
"_inV": "5", | |
"_label": "created" | |
}, | |
{ | |
"weight": 0.5, | |
"_id": "7", | |
"_type": "edge", | |
"_outV": "1", | |
"_inV": "2", | |
"_label": "knows" | |
}, | |
{ | |
"weight": 0.4000000059604645, | |
"_id": "9", | |
"_type": "edge", | |
"_outV": "1", | |
"_inV": "3", | |
"_label": "created" | |
}, | |
{ | |
"weight": 1, | |
"_id": "8", | |
"_type": "edge", | |
"_outV": "1", | |
"_inV": "4", | |
"_label": "knows" | |
}, | |
{ | |
"weight": 0.4000000059604645, | |
"_id": "11", | |
"_type": "edge", | |
"_outV": "4", | |
"_inV": "3", | |
"_label": "created" | |
}, | |
{ | |
"weight": 0.20000000298023224, | |
"_id": "12", | |
"_type": "edge", | |
"_outV": "6", | |
"_inV": "3", | |
"_label": "created" | |
} | |
] | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"graph": { | |
"vertices": [ | |
{ | |
"name": { | |
"type": "string", | |
"value": "lop" | |
}, | |
"lang": { | |
"type": "string", | |
"value": "java" | |
}, | |
"_id": "3", | |
"_type": "vertex" | |
}, | |
{ | |
"name": { | |
"type": "string", | |
"value": "vadas" | |
}, | |
"age": { | |
"type": "integer", | |
"value": 27 | |
}, | |
"_id": "2", | |
"_type": "vertex" | |
}, | |
{ | |
"name": { | |
"type": "string", | |
"value": "marko" | |
}, | |
"age": { | |
"type": "integer", | |
"value": 29 | |
}, | |
"_id": "1", | |
"_type": "vertex" | |
}, | |
{ | |
"name": { | |
"type": "string", | |
"value": "peter" | |
}, | |
"age": { | |
"type": "integer", | |
"value": 35 | |
}, | |
"_id": "6", | |
"_type": "vertex" | |
}, | |
{ | |
"name": { | |
"type": "string", | |
"value": "ripple" | |
}, | |
"lang": { | |
"type": "string", | |
"value": "java" | |
}, | |
"_id": "5", | |
"_type": "vertex" | |
}, | |
{ | |
"name": { | |
"type": "string", | |
"value": "josh" | |
}, | |
"age": { | |
"type": "integer", | |
"value": 32 | |
}, | |
"_id": "4", | |
"_type": "vertex" | |
} | |
], | |
"edges": [ | |
{ | |
"weight": { | |
"type": "float", | |
"value": 1 | |
}, | |
"_id": "10", | |
"_type": "edge", | |
"_outV": "4", | |
"_inV": "5", | |
"_label": "created" | |
}, | |
{ | |
"weight": { | |
"type": "float", | |
"value": 0.5 | |
}, | |
"_id": "7", | |
"_type": "edge", | |
"_outV": "1", | |
"_inV": "2", | |
"_label": "knows" | |
}, | |
{ | |
"weight": { | |
"type": "float", | |
"value": 0.4000000059604645 | |
}, | |
"_id": "9", | |
"_type": "edge", | |
"_outV": "1", | |
"_inV": "3", | |
"_label": "created" | |
}, | |
{ | |
"weight": { | |
"type": "float", | |
"value": 1 | |
}, | |
"_id": "8", | |
"_type": "edge", | |
"_outV": "1", | |
"_inV": "4", | |
"_label": "knows" | |
}, | |
{ | |
"weight": { | |
"type": "float", | |
"value": 0.4000000059604645 | |
}, | |
"_id": "11", | |
"_type": "edge", | |
"_outV": "4", | |
"_inV": "3", | |
"_label": "created" | |
}, | |
{ | |
"weight": { | |
"type": "float", | |
"value": 0.20000000298023224 | |
}, | |
"_id": "12", | |
"_type": "edge", | |
"_outV": "6", | |
"_inV": "3", | |
"_label": "created" | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment