I installed the neo4j/community/server-example/ extensions in a fresh neo4j-community 2.0 edition. results in: $ curl http://localhost:7474/db/data/ { "extensions" : { "GetAll" : { "get_all_nodes" : "http://localhost:7474/db/data/ext/GetAll/graphdb/get_all_nodes", "getAllRelationships" : "http://localhost:7474/db/data/ext/GetAll/graphdb/getAllRelationships" } }, "node" : "http://localhost:7474/db/data/node", "node_index" : "http://localhost:7474/db/data/index/node", "relationship_index" : "http://localhost:7474/db/data/index/relationship", "extensions_info" : "http://localhost:7474/db/data/ext", "relationship_types" : "http://localhost:7474/db/data/relationship/types", "batch" : "http://localhost:7474/db/data/batch", "cypher" : "http://localhost:7474/db/data/cypher", "transaction" : "http://localhost:7474/db/data/transaction", "neo4j_version" : "2.0.0" }
if I then curl: $ curl http://localhost:7474/db/data/ext { "GetAll" : "http://localhost:7474/db/data/ext/GetAll", "ShortestPath" : "http://localhost:7474/db/data/ext/ShortestPath", "DepthTwo" : "http://localhost:7474/db/data/ext/DepthTwo" } the results of "extensions" and /ext are not telling me the same thing. I realize that /ext shows me the actual endpoints but should DepthTwo and ShortestPath not also appear in "extensions" as entries on the same level as "GetAll" does? -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
