Hy @Saravanan_Dharmaraj , The above mentioned post talks about using the list query in which we can apply filters and we only get those result sets. I am talking about using content fragment by path query. where I will be passing the path of the content fragment and the required variation. The problem is if the particular variation doesn't exist Adobe documentation says we will get master variation as default fallback which can be misleading.
I want to avoid getting fallback master variation response in path based query.
query {
article(variation:"spanish", _path:"/path/to/article/contentfragment") {
item {
_path,
title,
}
}
}