You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
match(e:testing)
with collect(e.date) as dates, ["column1", "column2"] as columns
unwind dates as dt
with [{_date:dt, _name:columns[0], avg:tointeger(rand() * 100)},{_date:dt, _name:columns[1], avg:tointeger(rand() * 100)} ] as test_metrics
return test_metrics
while this will:
match(e:testing)
with collect(e.date) as dates, ["column1", "column2"] as columns
unwind dates as dt
with [{_date:dt, _name:columns[0], avg:tointeger(rand() * 100)},{_date:dt, _name:columns[1], avg:tointeger(rand() * 100)} ] as test_metrics
unwind test_metrics as tm
return tm._date, tm._name, tm.avg
The text was updated successfully, but these errors were encountered:
See bbenzikry/neo4clj#1
The following does not work
while this will:
The text was updated successfully, but these errors were encountered: