


So I have a query like this:
query {
articlesList(variation:"spanish") {
items {
_path,
title,
}
}
}
This works fine but if I don't have a Spanish variation for a specific `Article` content fragment then it returns the master variation. However ideally I want it to return all the articles which have those variations and if they don't then return nothing. How do I go about solving this?
Solved! Go to Solution.
Views
Replies
Sign in to like this content
Total Likes
Got it sorted by performing variation as filter, instead of variation
query { articlesList(variation:"spanish",filter:{ _variation: { _expressions: [ { value: "spanish", _operator: EQUALS, _ignoreCase: true } ] } }) { items { _path, title, } } }
Got it sorted by performing variation as filter, instead of variation
query { articlesList(variation:"spanish",filter:{ _variation: { _expressions: [ { value: "spanish", _operator: EQUALS, _ignoreCase: true } ] } }) { items { _path, title, } } }