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

bulk_import_source_group_item.fragment.graphql « fragments « 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: 089340b3c48d2c3ee52d8b98b2bf65abb721377a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#import "./bulk_import_source_group_progress.fragment.graphql"

fragment BulkImportSourceGroupItem on ClientBulkImportSourceGroup {
  id
  web_url
  full_path
  full_name
  progress {
    ...BulkImportSourceGroupProgress
  }
  import_target {
    target_namespace
    new_name
  }
  last_import_target {
    target_namespace
    new_name
  }
  validation_errors {
    field
    message
  }
}