Is it currently possible to set the default language for GraphQL queries? Something like the X-Languages header offered as part of the REST API.
Including the language again and again for every field just seems rather cumbersome, especially when the language needs to be set based on a variable.
`{
queryPeopleContents {
data {
name {
${language}
}
role {
${language}
}
}
}
}`
Also, the X-Flatten header would be quite nice to have in order to make the queries even more simple.
Is there a reason why these headers (as well as the fallback language) have not been implemented for the GraphQL endpoint, while they are available for the REST API.