windkomo
09/11/2017, 8:19 PMLimitations
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 ?
allItems(
filter: {
AND: [{
tags_every: {
key: "tag1"
}
}, {
tags_every: {
key: "tag2"
}
}]
}) {
id
tags {
key
}
}