py2neo version: 2021.2.3
python version: 3.9.15
I created a database with nodes that include coordinates and am able to retrieve them using the basic GUI with this query:
match (n) return n limit 1;

However, when I attempt the same thing using py2neo like this:
graph.run("match (n) return n limit 1;")
I get the following error:
TypeError: Cypher literal values of type interchange.geo.WGS84Point are not supported.
Are there plans to include WGS84Point support? If not, is there perhaps a work-around?
py2neo version:
2021.2.3python version:
3.9.15I created a database with nodes that include coordinates and am able to retrieve them using the basic GUI with this query:
match (n) return n limit 1;However, when I attempt the same thing using py2neo like this:
graph.run("match (n) return n limit 1;")I get the following error:
TypeError: Cypher literal values of type interchange.geo.WGS84Point are not supported.Are there plans to include WGS84Point support? If not, is there perhaps a work-around?