Variation in AEM: Returns the master data if variation not found, but I only want the content fragments with variations
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?