When using this query:
query {
queryFoo {
mytags: tags (filter: {id: {eq: "helloworld"}}) {
id
}
alltags: tags {
id
}
}
}
Only the tag “helloworld” is present in the result (both in mytags
and alltags
), even if the Foo
has multiple tags.