summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages_and_registries/container_registry/explorer/graphql/queries/get_container_repository_tags.query.graphql
blob: 502382010f9d3b35da6551fb8213c03c16a5218e (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
#import "~/graphql_shared/fragments/pageInfo.fragment.graphql"

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