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/265/relationships/out", "data" : { "name" : "I" }, "traverse" : "http://localhost:7474/db/data/node/265/traverse/{returnType}", "all_typed_relationships" : "http://localhost:7474/db/data/node/265/relationships/all/{-list|&|types}", "property" : "http://localhost:7474/db/data/node/265/properties/{key}", "self" : "http://localhost:7474/db/data/node/265", "outgoing_typed_relationships" : "http://localhost:7474/db/data/node/265/relationships/out/{-list|&|types}", "properties" : "http://localhost:7474/db/data/node/265/properties", "incoming_relationships" : "http://localhost:7474/db/data/node/265/relationships/in", "extensions" : { }, "create_relationship" : "http://localhost:7474/db/data/node/265/relationships", "paged_traverse" : "http://localhost:7474/db/data/node/265/paged/traverse/{returnType}{?pageSize,leaseTime}", "all_relationships" : "http://localhost:7474/db/data/node/265/relationships/all", "incoming_typed_relationships" : "http://localhost:7474/db/data/node/265/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/264/relationships/out", "data" : { "name" : "I" }, "traverse" : "http://localhost:7474/db/data/node/264/traverse/{returnType}", "all_typed_relationships" : "http://localhost:7474/db/data/node/264/relationships/all/{-list|&|types}", "property" : "http://localhost:7474/db/data/node/264/properties/{key}", "self" : "http://localhost:7474/db/data/node/264", "outgoing_typed_relationships" : "http://localhost:7474/db/data/node/264/relationships/out/{-list|&|types}", "properties" : "http://localhost:7474/db/data/node/264/properties", "incoming_relationships" : "http://localhost:7474/db/data/node/264/relationships/in", "extensions" : { }, "create_relationship" : "http://localhost:7474/db/data/node/264/relationships", "paged_traverse" : "http://localhost:7474/db/data/node/264/paged/traverse/{returnType}{?pageSize,leaseTime}", "all_relationships" : "http://localhost:7474/db/data/node/264/relationships/all", "incoming_typed_relationships" : "http://localhost:7474/db/data/node/264/relationships/in/{-list|&|types}" } ]
Copyright © 2011 Neo Technology