You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, for a node with properties: name: "Dino", age: 50, I'll get back the following JS object
{
"name": "Dino",
"age": {
"low": 50,
"high": 0
}
}```
Is there a way to get Neo4J to return something less surprising?
The browser does this when displaying the value. If not, is there a recommended way to take the returned
object and recurse through it turning it back to a JS integer?
The properties could of course be N layers deep, and I just want to JSON.stringify() on it,
but the high/low stuff looks odd.
Thanks