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

get_ci_catalog_resource_components.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: bf1edf1af6e9a7cb08bf710a07f8461df0931d3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
query getCiCatalogResourceComponents($fullPath: ID!) {
  ciCatalogResource(fullPath: $fullPath) {
    id
    webPath
    latestVersion {
      id
      components {
        nodes {
          id
          name
          includePath
          inputs {
            name
            required
            default
          }
        }
      }
    }
  }
}