summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues/show/components/incidents/graphql/queries/get_alert.graphql
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
      }
    }
  }
}