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
constcreateMetros=`UNWIND ['NYC, 'Cavite Island'] AS metro MERGE (m:Metro {name: metro})`awaitthis.persistenceManager.execute(newQuerySpecification<void>(createMetros));
This will not:
constcreateMetros=`UNWIND $metros AS metro MERGE (m:Metro {name: metro})`awaitthis.persistenceManager.execute(
newQuerySpecification<void>(createMetros).bind({metros: ['NYC','Cavite Island'));
The text was updated successfully, but these errors were encountered:
This will work:
This will not:
The text was updated successfully, but these errors were encountered: