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

get_group_container_repositories.query.graphql « queries « graphql « explorer « registry « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 348eda97ea727d79083a999becdaee31fe4768a2 (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 "~/graphql_shared/fragments/pageInfo.fragment.graphql"
#import "../fragments/container_repository.fragment.graphql"

query getGroupContainerRepositories(
  $fullPath: ID!
  $name: String
  $first: Int
  $last: Int
  $after: String
  $before: String
) {
  group(fullPath: $fullPath) {
    containerRepositoriesCount
    containerRepositories(name: $name, after: $after, before: $before, first: $first, last: $last) {
      nodes {
        ...ContainerRepositoryFields
      }
      pageInfo {
        ...PageInfo
      }
    }
  }
}