debian-mirror-gitlab/app/assets/javascripts/monitoring/queries/getDashboardValidationWarnings.query.graphql

19 lines
357 B
GraphQL
Raw Normal View History

2020-07-28 23:09:34 +05:30
query getDashboardValidationWarnings(
$projectPath: ID!
$environmentName: String
$dashboardPath: String!
) {
project(fullPath: $projectPath) {
id
environments(name: $environmentName) {
nodes {
name
metricsDashboard(path: $dashboardPath) {
path
schemaValidationWarnings
}
}
}
}
}