Automatic index nodes can be found via exact lookups with normal Index REST syntax.
Example request
GET http://localhost:7474/db/data/index/auto/node/name/I
Accept: application/json
Example response
200: OK
Content-Type: application/json
[ {
"outgoing_relationships" : "http://localhost:7474/db/data/node/317/relationships/out",
"data" : {
"name" : "I"
},
"traverse" : "http://localhost:7474/db/data/node/317/traverse/{returnType}",
"all_typed_relationships" : "http://localhost:7474/db/data/node/317/relationships/all/{-list|&|types}",
"property" : "http://localhost:7474/db/data/node/317/properties/{key}",
"self" : "http://localhost:7474/db/data/node/317",
"outgoing_typed_relationships" : "http://localhost:7474/db/data/node/317/relationships/out/{-list|&|types}",
"properties" : "http://localhost:7474/db/data/node/317/properties",
"incoming_relationships" : "http://localhost:7474/db/data/node/317/relationships/in",
"extensions" : {
},
"create_relationship" : "http://localhost:7474/db/data/node/317/relationships",
"paged_traverse" : "http://localhost:7474/db/data/node/317/paged/traverse/{returnType}{?pageSize,leaseTime}",
"all_relationships" : "http://localhost:7474/db/data/node/317/relationships/all",
"incoming_typed_relationships" : "http://localhost:7474/db/data/node/317/relationships/in/{-list|&|types}"
} ]See Find node by query for the actual query syntax.
Example request
GET http://localhost:7474/db/data/index/auto/node/?query=name:I
Accept: application/json
Example response
200: OK
Content-Type: application/json
[ {
"outgoing_relationships" : "http://localhost:7474/db/data/node/316/relationships/out",
"data" : {
"name" : "I"
},
"traverse" : "http://localhost:7474/db/data/node/316/traverse/{returnType}",
"all_typed_relationships" : "http://localhost:7474/db/data/node/316/relationships/all/{-list|&|types}",
"property" : "http://localhost:7474/db/data/node/316/properties/{key}",
"self" : "http://localhost:7474/db/data/node/316",
"outgoing_typed_relationships" : "http://localhost:7474/db/data/node/316/relationships/out/{-list|&|types}",
"properties" : "http://localhost:7474/db/data/node/316/properties",
"incoming_relationships" : "http://localhost:7474/db/data/node/316/relationships/in",
"extensions" : {
},
"create_relationship" : "http://localhost:7474/db/data/node/316/relationships",
"paged_traverse" : "http://localhost:7474/db/data/node/316/paged/traverse/{returnType}{?pageSize,leaseTime}",
"all_relationships" : "http://localhost:7474/db/data/node/316/relationships/all",
"incoming_typed_relationships" : "http://localhost:7474/db/data/node/316/relationships/in/{-list|&|types}"
} ]Copyright © 2012 Neo Technology