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: 2fd698eadf995b781908b82b1c46aa077b69f40a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query getAnnotations($projectPath: ID!) {
  environment(name: $environmentName) {
    metricDashboard(id: $dashboardId) {
      annotations: nodes {
        id
        description
        starting_at
        ending_at
        panelId
      }
    }
  }
}