Floo0 / ConfluenceHelper

JS overview webpage to confluence. Visualises confluence pages, superior hierarchical topics and relations.
0 stars 0 forks source link

Wrong ID handling #4

Open Floo0 opened 4 years ago

Floo0 commented 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.

Floo0 commented 4 years ago

Changed to lower part only.