Last active
August 29, 2015 14:04
-
-
Save if6was9/b96e402dec07d5ad49a8 to your computer and use it in GitHub Desktop.
cypher cheatsheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Find node by ID | |
| ---------------- | |
| match (n) where id(n)=1 return n; | |
| Find all nodes by label | |
| ======================= | |
| match (m:Person) return m; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment