I want to find all ways in a specified search area that contain a specific Node in overpass turbo.
To give a precise example, I want to find all place=islet ways in the name=Dalsland region that contain a amenity=shelter node.
Selecting all the islets and or shelters is easy:
[out:json][timeout:20];
relation["name"="Dalsland"]; map_to_area -> .searchArea;
// node["amenity"="shelter"](area.searchArea);
way["place"="islet"](area.searchArea);
(._;>;);
out skel qt;
But how would I use these to filter the islets?