the graphql API supports searching by tag, but this particular query seems to be fetching the products that have the tag Black and products that have the tag White. Given that products can have multiple tags, I wanted this to only fetch the products that have BOTH the Black and White tags. Is it possible?
To fetch products that have both the “Black” and “White” tags, you need to implement a more nuanced query strategy, as the direct AND operation for tags through a single query isn’t natively supported by the API in the way filters are used in your example. One option would be to perform the initial query to fetch products with either tag, then filter the results in your application code to retain only those items that have both tags.