How to find a specific node in Neo4j

how to find a specific node using the Neo4j API. When I refereed documents, I received a code to get all the nodes. However, if I have a node called "XYZ", I would like to know how to get ONLY this particular node.

+5
source share
1 answer

See Indexing Service , which allows you to index your nodes with key-value pairs. After indexing your nodes, you can request a graph and get nodes that match the given key value.

+6
source

All Articles