Neo4j : Retrieving All Nodes and Relationship connected to a Node in Neo4j Rest OR through Cypher
问题 I want to Retrieve all nodes and relationship connected to a node. I Tried to do this in two ways: 1st Through Neo4j REST API i Tried this URI traverserUri = new URI( startNode.toString() + "/traverse/node" ); WebResource resource = Client.create() .resource( traverserUri ); String jsonTraverserPayload = t.toJson(); ClientResponse response = resource.accept( MediaType.APPLICATION_JSON ) .type( MediaType.APPLICATION_JSON ) .entity( jsonTraverserPayload ) .post( ClientResponse.class ); System