summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/queries/get_dashboard_validation_warnings.query.graphql
blob: a61d601cd3413fc18275e0ad58c45bbbb4146f11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
query getDashboardValidationWarnings(
  $projectPath: ID!
  $environmentName: String
  $dashboardPath: String!
) {
  project(fullPath: $projectPath) {
    id
    environments(name: $environmentName) {
      nodes {
        id
        name
        metricsDashboard(path: $dashboardPath) {
          path
          schemaValidationWarnings
        }
      }
    }
  }
}