Hi,
I try to filter entries by multiple taxonomy terms (entry has tag A or tag B). The conditions docs say taxonomy:tags="review|colorful"
should work. But translated to a graphql filter it returns all entries.
{
entries(
filter: { taxonomy: {tags: "a|b"} },
sort: "date desc",
limit: 10
) {
total
}
}
Can anyone tell me how the correct taxonomy filter would look like?
Thank you