summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/import_entities/import_groups/graphql/fragments/bulk_import_source_group_item.fragment.graphql
blob: 47675cd1bd0559f9500d8b4d0d1c7272d871208e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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
  }
  validation_errors {
    field
    message
  }
}