I must be doing something really stupid, but can't figure it out.
I'm using the Web Admin for neo4j 1.6 (Windows 7 Pro), and the only configuration I've changed is the path to the data store in neo4j-server.properties:
org.neo4j.server.database.location=C://neo4jdbs//domainModel
So, my cypher query returns nothing:
cypher> START a = node(0)
cypher> RETURN a
cypher>
cypher> start a = node(40)
cypher> return a
cypher>
cypher>
but the node really exists as you can see from the http console:
http> get /db/data/node/40
==> 200 OK
==> {
==> "outgoing_relationships" : "
http://127.0.0.1:7474/db/data/node/40/relationships/out",
==> "data" : {
==> "dateOfBirth" : 276892200000,
==> "id" : 185,
==> "name" : "Luanne M",
==> "gender" : "F",
==> "personId" : 184
==> },
==> "traverse" : "
http://127.0.0.1:7474/db/data/node/40/traverse/{returnType}",
==> "all_typed_relationships" : "
http://127.0.0.1:7474/db/data/node/40/relationships/all/{-list|&|types}",
==> "property" : "
http://127.0.0.1:7474/db/data/node/40/properties/{key}",
==> "self" : "
http://127.0.0.1:7474/db/data/node/40",
==> "outgoing_typed_relationships" : "
http://127.0.0.1:7474/db/data/node/40/relationships/out/{-list|&|types}",
==> "properties" : "
http://127.0.0.1:7474/db/data/node/40/properties",
==> "incoming_relationships" : "
http://127.0.0.1:7474/db/data/node/40/relationships/in",
==> "extensions" : {
==> },
==> "create_relationship" : "
http://127.0.0.1:7474/db/data/node/40/relationships",
==> "paged_traverse" : "
http://127.0.0.1:7474/db/data/node/40/paged/traverse/{returnType}{?pageSize,leaseTime}",
==> "all_relationships" : "
http://127.0.0.1:7474/db/data/node/40/relationships/all",
==> "incoming_typed_relationships" : "
http://127.0.0.1:7474/db/data/node/40/relationships/in/{-list|&|types}"
==> }
What's missing??
Thanks
Luanne