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

get_ci_catalog_resource_details.query.graphql « queries « graphql « catalog « ci « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 382d38667953ce9dea74028806dc4ecb8fd38020 (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
query getCiCatalogResourceDetails($id: CiCatalogResourceID!) {
  ciCatalogResource(id: $id) {
    id
    openIssuesCount
    openMergeRequestsCount
    versions(first: 1) {
      nodes {
        id
        commit {
          id
          pipelines(first: 1) {
            nodes {
              id
              detailedStatus {
                id
                detailsPath
                icon
                text
                group
              }
            }
          }
        }
        tagName
        releasedAt
      }
    }
  }
}