We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e52759 commit fea6baeCopy full SHA for fea6bae
testkit-backend/cypher-native-binders.js
@@ -25,6 +25,7 @@ export function nativeToCypher (x) {
25
return valueResponse('CypherInt', x.toInt())
26
}
27
if (Array.isArray(x)) {
28
+ const values = x.map(nativeToCypher)
29
return valueResponse('CypherList', values)
30
31
if (x instanceof neo4j.types.Node) {
0 commit comments