-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
Translated categories aren't showing in Graphql #34
Comments
I've the same problem while querying my posts. All terms (categories and tags) refer to the original instead of the translated version |
@MrZyr0 this appears to be a different problem from the original one stated by the OP |
@aaron-shop12 I havent researched into categories at all here as my use case did not require it. Since fixing issues like this take substantial amount of time (at least for me), I dont really have the bandwidth to investigate this. |
Ok, in the meantime I have fork the project and add a new field |
@MrZyr0 do you know how to get also the translated terms in the query above? |
As I said, I've added a new field called Another way to get tags is by use
This works fine for us. |
I can't see the translated categories in the GraphQL. The below only shows the 3 categories in the default language - and not the translated categories.
Similar issue happened with my menus - if you go into a translated menu and then save it, it will then remove all translated menus from the graphql.
query MyQuery {
terms(where: {taxonomies: CATEGORY}) {
edges {
node {
id
link
name
... on Category {
id
name
}
taxonomyName
uri
}
}
}
}
The text was updated successfully, but these errors were encountered: