Neo4j CQL Read Clauses

Neo4j CQL clauses can be categorized in two types:

IndexClausesUsage
1MATCHThe MATCH clause is used to search the data with a specified pattern.
2OPTIONAL MATCHThe OPTIONAL MATCH is the same as MATCH clause, the only difference between both is that the later one can use NULLS in the case of missing part of the pattern.
3WHEREThe WHERE clause is used to add contents at the specific location to the CQL queries.
4STARTThe START clause is used to find the starting points through the legacy indexes.
5LOAD CSVThe LOAD CSV clause is used to import data from CSV files.





Latest Courses