py2neo icon indicating copy to clipboard operation
py2neo copied to clipboard

TypeError: Cypher literal values of type interchange.geo.WGS84Point are not supported

Open suciokhan opened this issue 2 years ago • 0 comments

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; Screenshot from 2023-01-03 09-17-02

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?

suciokhan avatar Jan 03 '23 14:01 suciokhan