Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getAnnotations.query.graphql « queries « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27b49860b8a7140de4153b759767f5f1155fd38c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
            }
          }
        }
      }
    }
  }
}