64 Bit Integers in Neo4j

Viewed 517

I read several places in the Neo4j documents that suggest Neo4j supports 64bit integers. So I'm having trouble understanding why I'm getting rounded values for large integer properties. For example:

CREATE (t:Test {id:9223372036854775807}) return t

results in:

{ "id": 9223372036854776000

I'm using both the Python 3 Bolt driver and the web console with community version 3.2.2.

What's going on? So I need to do something special to save large ints?

1 Answers
Related