I need to get multiple nodes in Neo4j and I only have identifiers.
Is there a way to get nodes that have their ID in a given set in a single cypher request? Or do I need to call db for each ID?
I am using Neo4j 2.1.5
Thanks!
You can combine inside an array.
MATCH (u:`User`) WHERE ID(u) IN [1, 2, 3] RETURN u
Source: https://habr.com/ru/post/976983/More articles:Android: google headergridview implementation example - androidAdding a header and footer to a gridview in Android - androidData Type Limitation - typesWMI query returning incomplete results - perlWhat's the best way to create a multimedia style notification for Android Lollipop, given backward compatibility? - androidHow to click on the Android gallery with espresso - androidWhat is the meaning of // in bash? - unixDifference between InstrumentationTestCase and AndroidTestCase - androidTypescript: constants in the interface - typescriptdifference between {} and function () {} for classes - javascriptAll Articles