InterviewSolution
Saved Bookmarks
| 1. |
What Is Match Command In Neo4j? Where Is It Used? |
|
Answer»
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. Syntax for MATCH command: 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. |
|