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 de806a1 commit 359b2dbCopy full SHA for 359b2db
testkit-backend/cypher-native-binders.js
@@ -1,4 +1,4 @@
1
-import neo4j from 'neo4j-driver'
+import neo4j, { int } from 'neo4j-driver'
2
3
export function valueResponse (name, value) {
4
return { name: name, data: { value: value } }
@@ -58,7 +58,7 @@ export function cypherToNative (c) {
58
case 'CypherString':
59
return value
60
case 'CypherInt':
61
- return value
+ return int(value)
62
case 'CypherFloat':
63
64
case 'CypherNull':
0 commit comments