Open Floo0 opened 4 years ago
Currently in neo4j.js the high and low part of the returned IDs get concatenated as strings. As this is ok for IDs smaller than 2^53- 1, it can produce wrong number strings for higher numbers.
See also "Numbers and the Integer type": https://github.com/neo4j/neo4j-javascript-driver#a-note-on-numbers-and-the-integer-type.
Suggested solution: Wait for the next releases, as 2^53 is much more than ever needed. Could also drop the high part.
Changed to lower part only.
Currently in neo4j.js the high and low part of the returned IDs get concatenated as strings. As this is ok for IDs smaller than 2^53- 1, it can produce wrong number strings for higher numbers.
See also "Numbers and the Integer type": https://github.com/neo4j/neo4j-javascript-driver#a-note-on-numbers-and-the-integer-type.
Suggested solution: Wait for the next releases, as 2^53 is much more than ever needed. Could also drop the high part.