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

import_groups.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: 75215471d0faa4ec49966f515e2aad0323ddc74a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mutation importGroups($importRequests: [ImportGroupInput!]!) {
  importGroups(importRequests: $importRequests) @client {
    id
    lastImportTarget {
      id
      targetNamespace
      newName
    }
    progress {
      id
      status
    }
  }
}