summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/import_entities/import_groups/graphql/mutations/set_import_target.mutation.graphql
blob: 793b60ee378a8a906c2248b21150637ab93019a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mutation setImportTarget($newName: String!, $targetNamespace: String!, $sourceGroupId: String!) {
  setImportTarget(
    newName: $newName
    targetNamespace: $targetNamespace
    sourceGroupId: $sourceGroupId
  ) @client {
    id
    import_target {
      new_name
      target_namespace
    }
  }
}