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

get_container_repository_tags.query.graphql « queries « graphql « explorer « container_registry « packages_and_registries « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d753d33a02cd81dd02ebf1c6b4a8b49f32790f6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#import "~/graphql_shared/fragments/pageInfo.fragment.graphql"

query getContainerRepositoryTags(
  $id: ID!
  $first: Int
  $last: Int
  $after: String
  $before: String
  $name: String
  $sort: ContainerRepositoryTagSort
) {
  containerRepository(id: $id) {
    id
    tagsCount
    tags(after: $after, before: $before, first: $first, last: $last, name: $name, sort: $sort) {
      nodes {
        digest
        location
        path
        name
        revision
        shortRevision
        createdAt
        totalSize
        canDelete
      }
      pageInfo {
        ...PageInfo
      }
    }
  }
}