You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. Installed plugin, tested ACF mutation. It works fine for "Posts", "Pages", etc.
But I found that I cant mutate WooCommerce entities, such as "productCategory".
Here is example of mutation: mutation MyMutation { updateProductCategory( input: {id: "dGVybTo2NDY=", enTitle: "EN title translation", enSeoTitle: "EN seo title translation"} ) { productCategory { enTranslation { enDescription enSeoDescription enSeoTitle enTitle } } } }
Hello. Installed plugin, tested ACF mutation. It works fine for "Posts", "Pages", etc.
But I found that I cant mutate WooCommerce entities, such as "productCategory".
Here is example of mutation:
mutation MyMutation { updateProductCategory( input: {id: "dGVybTo2NDY=", enTitle: "EN title translation", enSeoTitle: "EN seo title translation"} ) { productCategory { enTranslation { enDescription enSeoDescription enSeoTitle enTitle } } } }
Request always returns default values.
"data": { "updateProductCategory": { "productCategory": { "enTranslation": { "enDescription": null, "enSeoDescription": null, "enSeoTitle": null, "enTitle": null } } } },
Is it possible to fix that? Thanks!
The text was updated successfully, but these errors were encountered: