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

set_new_name.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: 354bf2a581539d09029a065764e14eb523a2e733 (plain)
1
2
3
4
5
6
7
8
mutation setNewName($newName: String!, $sourceGroupId: String!) {
  setNewName(newName: $newName, sourceGroupId: $sourceGroupId) @client {
    id
    import_target {
      new_name
    }
  }
}