utilities-mutation-content-migratelocale.gql 269 Bytes
Newer Older
Nick's avatar
Nick committed
1
mutation($sourceLocale: String!, $targetLocale: String!) {
2
  pages {
Nick's avatar
Nick committed
3
    migrateToLocale(sourceLocale: $sourceLocale, targetLocale: $targetLocale) {
4 5 6 7 8 9
      responseResult {
        succeeded
        errorCode
        slug
        message
      }
10
      count
11 12 13
    }
  }
}