summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/import_entities/import_groups/graphql/fragments/bulk_import_source_group_item.fragment.graphql
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
  }
}