Hi sandersdopper,

I’m not an Overpass expert, but meanwhile you wait for a more knowledgeable response you can try this:

[out:xml];
{{geocodeArea:London}}->.searchArea; //replace London with the desired area
wr["landuse"="cemetery"](area.searchArea)->.cemeteries;
 (
	nwr["amenity"="drinking_water"](area.searchArea);
   -
 (
    nwr["amenity"="drinking_water"](area.cemeteries);
	);
);
out meta;
>;
out meta qt;