27 lines
522 B
GraphQL
27 lines
522 B
GraphQL
|
query getAnnotations(
|
||
|
$projectPath: ID!
|
||
|
$environmentName: String
|
||
|
$dashboardPath: String!
|
||
|
$startingFrom: Time!
|
||
|
) {
|
||
|
project(fullPath: $projectPath) {
|
||
|
environments(name: $environmentName) {
|
||
|
nodes {
|
||
|
id
|
||
|
name
|
||
|
metricsDashboard(path: $dashboardPath) {
|
||
|
annotations(from: $startingFrom) {
|
||
|
nodes {
|
||
|
id
|
||
|
description
|
||
|
startingAt
|
||
|
endingAt
|
||
|
panelId
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|