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.

Related questions

0 votes
asked Jan 24, 2023 in Neo4j by sharadyadav1986
0 votes
+1 vote
0 votes
asked Dec 29, 2023 in Neo4j by Robin
+1 vote
asked Jan 28, 2023 in Neo4j by john ganales
...