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

get_alert.graphql « queries « graphql « incidents « components « show « issues « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d88633f2ae9685979d3e040396282c6462baef1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
query getAlert($iid: String!, $fullPath: ID!) {
  project(fullPath: $fullPath) {
    id
    issue(iid: $iid) {
      id
      alertManagementAlert {
        iid
        title
        detailsUrl
        severity
        status
        startedAt
        eventCount
        monitoringTool
        service
        description
        endedAt
        hosts
        details
      }
    }
  }
}