Export city boundaries without landmark

Hi! I’m new here

In overpass-turbo with this code

(
  rel(44915);
  rel(44993);
  rel(45188);
  
);
(._;>;); out meta;

I’m exporting the borders of several cities, then I create a GeoJSON file and import in geojson.io to have a better look.

Is there a way to export only borders without the landamark point located on the city name? (I know I can delete them manually but sometimes I have a lot of cities)

Thanks!

Try


(
rel(44915);
rel(44993);
rel(45188);
);
way(r);
out geom;