### Discussed in https://github.com/nuxt/content/discussions/2955 <div type='discussions-op-text'> <sup>Originally posted by **humblemodulo** January 7, 2025</sup> In the previous version of nuxt-content (v2) I would simply query tags like so: ``` .where({ tags: { $contains: tagSlug } }) ``` However there is no `contains` in v3, and the logic for `IN` seems to require the reverse operation. I've tried `LIKE` and that doesn't work either. Definitely need to know the best way to find values in z.array() field types. As it stands, I'm forced to retrieve all, then run JS `.filter()` on the results. Quite inefficient. </div>