-
-
Save j0shua/a6893100f5595ffde239e0596e75e92c to your computer and use it in GitHub Desktop.
#neo4j cypher tips & tricks
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
| 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