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

getDashboardValidationWarnings.query.graphql « queries « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 302383512d37b7da63524c09bff5504a0fd30ce8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query getDashboardValidationWarnings(
  $projectPath: ID!
  $environmentName: String
  $dashboardPath: String!
) {
  project(fullPath: $projectPath) {
    id
    environments(name: $environmentName) {
      nodes {
        name
        metricsDashboard(path: $dashboardPath) {
          path
          schemaValidationWarnings
        }
      }
    }
  }
}