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

set_import_progress.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: 43301554de3aafb8f3ba4d23c2e37c5f0b314fa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
mutation setImportProgress(
  $status: String!
  $sourceGroupId: String!
  $jobId: String
  $importTarget: ImportTargetInput!
) {
  setImportProgress(
    status: $status
    sourceGroupId: $sourceGroupId
    jobId: $jobId
    importTarget: $importTarget
  ) @client {
    id
    progress {
      id
      status
    }
    last_import_target {
      target_namespace
      new_name
    }
  }
}