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

get_container_repository_details.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: 3fd019467ac56c0dc343ab52aeaf417660ee9a7c (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#import "~/graphql_shared/fragments/pageInfo.fragment.graphql"

query getContainerRepositoryDetails(
  $id: ID!
  $first: Int
  $last: Int
  $after: String
  $before: String
) {
  containerRepository(id: $id) {
    id
    name
    path
    status
    location
    canDelete
    createdAt
    updatedAt
    tagsCount
    expirationPolicyStartedAt
    expirationPolicyCleanupStatus
    tags(after: $after, before: $before, first: $first, last: $last) {
      nodes {
        digest
        location
        path
        name
        revision
        shortRevision
        createdAt
        totalSize
        canDelete
      }
      pageInfo {
        ...PageInfo
      }
    }
    project {
      visibility
      containerExpirationPolicy {
        enabled
        nextRunAt
      }
    }
  }
}