Cannot filter products that have at least one tag

Hi @DanAtBonify ,

I had success using this query.

{
   products(first: 25, query:"tag:*"){
    edges{
      node{
        id
        tags
      }
    }
  }
}

It looks like you already tried this query, but had different results. If possible, can you share a product id with no tags that shows up when doing this query so I can investigate?

Cheers