locale-mutation-save.gql 338 B

123456789101112
  1. mutation($locale: String!, $autoUpdate: Boolean!, $namespacing: Boolean!, $namespaces: [String]!) {
  2. localization {
  3. updateLocale(locale: $locale, autoUpdate: $autoUpdate, namespacing: $namespacing, namespaces: $namespaces) {
  4. responseResult {
  5. succeeded
  6. errorCode
  7. slug
  8. message
  9. }
  10. }
  11. }
  12. }