Welcome to mirror list, hosted at ThFree Co, Russian Federation.

set_target_namespace.mutation.graphql « mutations « graphql « import_groups « import_entities « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0ef407f13590d5b4dda8dddc8b78e0e3521b994 (plain)
1
2
3
4
5
6
7
8
mutation setTargetNamespace($targetNamespace: String!, $sourceGroupId: String!) {
  setTargetNamespace(targetNamespace: $targetNamespace, sourceGroupId: $sourceGroupId) @client {
    id
    import_target {
      target_namespace
    }
  }
}