debian-mirror-gitlab/app/assets/javascripts/monitoring/queries/getDashboardValidationWarnings.query.graphql
2022-01-26 12:08:38 +05:30

19 lines
368 B
GraphQL

query getDashboardValidationWarnings(
$projectPath: ID!
$environmentName: String
$dashboardPath: String!
) {
project(fullPath: $projectPath) {
id
environments(name: $environmentName) {
nodes {
id
name
metricsDashboard(path: $dashboardPath) {
path
schemaValidationWarnings
}
}
}
}
}