**Describe the bug✱
The results of the same query are different.
Query is:
select * from cypher('age_test_graph', $$ MATCH (p:Person {name: "Tom Hanks"}) RETURN p $$) as (p agtype);
Query results in Postico, pgadmin4 and psql:
{"id": 25332747903959097, "label": "Person", "properties": {"born": 1956, "name": "Tom Hanks"}}
Query result in age-viewer:
{"id":25332747903959096,"label":"Person","properties":{"born":1956,"name":"Tom Hanks"}}
The id shown is that of another record in the corresponding Person table, wonder why / how.
I expect the same result in age-viewer
- age-viewer: latest pull from git repo
- OS: MacOS
- Browser Safari
- Version 26.6.2
**Describe the bug✱
The results of the same query are different.
Query is:
select * from cypher('age_test_graph', $$ MATCH (p:Person {name: "Tom Hanks"}) RETURN p $$) as (p agtype);
Query results in Postico, pgadmin4 and psql:
{"id": 25332747903959097, "label": "Person", "properties": {"born": 1956, "name": "Tom Hanks"}}
Query result in age-viewer:
{"id":25332747903959096,"label":"Person","properties":{"born":1956,"name":"Tom Hanks"}}
The id shown is that of another record in the corresponding Person table, wonder why / how.
I expect the same result in age-viewer