I am trying to add data to the database using the following cypher code:
UNWIND [
{location: 'Westmere', resource: {medicine: [{unit: 1}], sustenance: [{unit: 1}], equipment: [{unit: 1}]}},
{location: 'Ponsonby', resource: {medicine: [{unit: ...
I wanted to create relationships between two places after doing unwind. The code looks something like this:
// Create a place
UNWIND [
{place: 'Westmere'},
{place: 'Ponsonby'},
{place: 'Greylynn'},
{place: 'Eden Terrace'},
{place:...