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

get_pipeline_warnings.query.graphql « queries « graphql « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd1d2b62a3dd52d6d67ec19cfe87dfcd1e34fca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query getPipelineWarnings($fullPath: ID!, $iid: ID!) {
  project(fullPath: $fullPath) {
    id
    pipeline(iid: $iid) {
      id
      warningMessages {
        content
        id
      }
    }
  }
}