I want to create object and get it in JSON format along with its ID in the format.
Suppose I create object like this:
CREATE (task3:TASK {idesc: 'Task 3', status: 'new', due_date: date("2020-06-16") })
The simplest query
MATCH (n) RETURN n
This retu...