Home » Neo4j Read Clauses

Neo4j Read Clauses

by Online Tutorials Library

Neo4j CQL Read Clauses

Neo4j CQL clauses can be categorized in two types:

Index Clauses Usage
1 MATCH The MATCH clause is used to search the data with a specified pattern.
2 OPTIONAL MATCH The 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.
3 WHERE The WHERE clause is used to add contents at the specific location to the CQL queries.
4 START The START clause is used to find the starting points through the legacy indexes.
5 LOAD CSV The LOAD CSV clause is used to import data from CSV files.

Next TopicNeo4j Match Clause

You may also like