Skip to content

Commit fea6bae

Browse files
bigmontz2hdddg
authored andcommitted
testkit-backend: fix the CypherList
The line which map the list values to cypher values was removed by accident.
1 parent 8e52759 commit fea6bae

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

testkit-backend/cypher-native-binders.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export function nativeToCypher (x) {
2525
return valueResponse('CypherInt', x.toInt())
2626
}
2727
if (Array.isArray(x)) {
28+
const values = x.map(nativeToCypher)
2829
return valueResponse('CypherList', values)
2930
}
3031
if (x instanceof neo4j.types.Node) {

0 commit comments

Comments
 (0)