We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I believe this repository is missing the ability to specifiy language when fetching a single page/post. E.g.:
query Pages { page(id: "some-slug", idType: URI, language: EN) {
The text was updated successfully, but these errors were encountered:
I solved single post language issue with translation. Example:
query getSinglePost { post(id: "lorem-ipsum", idType: SLUG) { translation(language: EN) { title content slug } } }
if you want to reach as variable use $language: LanguageCodeEnum! I hope it helps someone.
$language: LanguageCodeEnum!
Sorry, something went wrong.
Thank you, this made my day!
No branches or pull requests
I believe this repository is missing the ability to specifiy language when fetching a single page/post. E.g.:
The text was updated successfully, but these errors were encountered: