gitlab-org--gitlab-foss/app/assets/javascripts/monitoring/queries/getDashboardValidationWarni...

19 lines
357 B
GraphQL

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