[Overpass-api] How to get all relations for a node?node/way?
Speaking in Overpass QL I can select a node by its ID:
`node(3815147164);out;`
This however doesn't provide any info about relations or ways this node is a part of.
Going to OSM site: http://www.openstreetmap.org/node/3815147164 I can see at least which ways the node belongs to. And then to the way page: http://www.openstreetmap.org/way/136322077 I see its relations.
In Overpass relations are not returned, even for the way query:
`way(136322077);out;`
Any ideas how to get relations?