Hello, Regarding the `Limitations` paragraph from...
# prisma-whats-new
w
Hello, Regarding the
Limitations
paragraph from https://www.graph.cool/docs/reference/simple-api/filtering-by-field-xookaexai0 I’ve made a many to many relation linking
Item
and
Tag
. I want to keep items that have the “tag1” and “tag2", is something like this possible ?
Copy code
allItems(
    filter: {
        AND: [{
            tags_every: {
                key: "tag1"
            }
        },  {
            tags_every: {
                key: "tag2"
            }
        }]
    }) {
     id
     tags {
          key
     }
}