summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/registry/explorer/graphql/queries/get_project_container_repositories.query.graphql
blob: 338e27745f7b7c7f3d239899b75887762cce75aa (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 getProjectContainerRepositories(
  $fullPath: ID!
  $name: String
  $first: Int
  $last: Int
  $after: String
  $before: String
) {
  project(fullPath: $fullPath) {
    containerRepositoriesCount
    containerRepositories(name: $name, after: $after, before: $before, first: $first, last: $last) {
      nodes {
        ...ContainerRepositoryFields
      }
      pageInfo {
        ...PageInfo
      }
    }
  }
}