0 votes
in Neo4j by
What is MATCH command? Where is it used in Neo4J?

1 Answer

0 votes
by
MATCH command is used with RETURN or UPDATE clause. It cannot be used alone otherwise it will give error.

Syntax:

MATCH   

(  

   <node-name>:<label-name>  

)  

The MATCH command cannot be used alone to fetch data from the database otherwise it will show invalid syntax error.
...