How to get posts with at least one tag

How to get posts with at least one tag

{{#get "posts" limit="12" filter="tags:false" include="tags,authors" as |posts pages|}}
{{/get}}

You could check it within the foreach, like this:

{{#get "posts" limit="10" include="tags,authors"}}
  {{#foreach posts}}
    {{#if tags}}
      <div>you have tag(s)</div>
    {{else}}
      <div>no tag</div>
    {{/if}}
  {{/foreach}}
{{/get}}