Skip to content

Instantly share code, notes, and snippets.

@j0shua
Forked from jexp/_cypher-tips-and-tricks.adoc
Created October 25, 2021 16:57
Show Gist options
  • Select an option

  • Save j0shua/a6893100f5595ffde239e0596e75e92c to your computer and use it in GitHub Desktop.

Select an option

Save j0shua/a6893100f5595ffde239e0596e75e92c to your computer and use it in GitHub Desktop.
#neo4j cypher tips & tricks
LOAD CSV WITH HEADERS FROM "file:///data2.csv" AS row
WITH ROW WHERE ANY (k in keys(row) WHERE row[k] IS NULL)
RETURN row LIMIT 100;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment