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

bulk_import_source_groups.query.graphql « queries « 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: 28dfefdf8a70442ce28964562b795ba6fb9b0aca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import "../fragments/bulk_import_source_group_item.fragment.graphql"

query bulkImportSourceGroups($page: Int = 1, $perPage: Int = 20, $filter: String = "") {
  bulkImportSourceGroups(page: $page, filter: $filter, perPage: $perPage) @client {
    nodes {
      ...BulkImportSourceGroupItem
    }
    pageInfo {
      page
      perPage
      total
      totalPages
    }
  }
}