Search only all the nodes that have tags

Hello everybody,

I discovered Overpass Turbo and i’m trying to execute queries looking for only nodes that contain a tag definition,

for example i’m running a query like this:


<osm-script output="json">
 <query type="node">
  <bbox-query {{bbox}}/>
 </query>
  <print mode="body"/>
  <recurse type="down"/>
  <print mode="skeleton"/>
</osm-script>

this return all nodes with and without tags,

Is possible to query only nodes with tags?