Get All Nodes
Retrieve all the existing nodes as an array of maps, default skip of 0 and limit of 100
:GET /db/{graph}/nodes?limit=100&skip=0
Example Request:
:GET /db/rage/nodes?limit=100&skip=0
Example Response:
[{"id": 1026, "type": "User", "key": "Helene", "properties": { "age": 41, "name": "helene" }},{"id": 1027, "type": "Person", "key": "Max", "properties": { "age": 42, "name": "max" }}]