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

deployment_details.query.graphql « queries « graphql « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: baed777bd0775712e275307dc840205eb816d1aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query getDeploymentDetails($projectPath: ID!, $iid: ID!) {
  project(fullPath: $projectPath) {
    id
    deployment(iid: $iid) {
      id
      iid
      tags {
        name
        path
      }
    }
  }
}