Skip to content

Instantly share code, notes, and snippets.

@if6was9
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save if6was9/b96e402dec07d5ad49a8 to your computer and use it in GitHub Desktop.

Select an option

Save if6was9/b96e402dec07d5ad49a8 to your computer and use it in GitHub Desktop.
cypher cheatsheet
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