Hi @dadish the module is awesome. But i have some troubles with language support.
Here is my query:
{
language(name: "default")
airport(s: "limit=4, sort=title") {
list {
id
title
}
}
}
Here is the response problem:
{
"errors": [
{
"message": "Cannot query field \"language\" on type \"Query\".",
"extensions": {
"category": "graphql"
},
"locations": [
{
"line": 2,
"column": 3
}
]
},
{
"message": "Cannot query field \"title\" on type \"AirportPage\".",
"extensions": {
"category": "graphql"
},
"locations": [
{
"line": 6,
"column": 7
}
]
}
]
}
title field has type - Page Title (Multi-Language), but as it mentioned above response is "Cannot query field \"title\" on type \"AirportPage\"
Here is GraphQL module configuration screen.
Where did I make a mistake?