18 lines
357 B
GraphQL
18 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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|