I am new to neo4j, so my question may sound stupid to you but anyway.
I have OSM data set imported to neo4j graph db. So curretnly I am trying to query different stuff from db, like:
MATCH (a) WHERE has(a.addr:street) RETURN a.addr:street
and it fails with an sysntax error:
Type mismatch: expected Node but was Boolean, Number, String or Collection<Any> (line 1, column 23)
"MATCH (a) WHERE has(a.addr:street) RETURN a.addr:street"
^
Which is strange, as the nodes has a lot of properties with colons(:).
Does anybody know how can I query such properties?