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 (a)
WITH a LIMIT 1
RETURN a { .* , degree: apoc.cypher.runFirstColumn("WITH {this} AS this MATCH (this)-->() RETURN COUNT (*) {limit}", {this: a, first: 3, offset: 0, limit: 5}, false) }
There seems to be a bug when passing parameters to
apoc.cypher.runFirstColumn
.For example, this works as expected:
However this
results in the following error:
This was noticed when using the neo4j-graphql-js integration. See neo4j-graphql/neo4j-graphql-js#53
The text was updated successfully, but these errors were encountered: