summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issue_show/components/incidents/graphql/queries/get_alert.graphql
blob: 938b90b3f7c52bb1712e97bd6b14ff721e5f5c11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query getAlert($iid: String!, $fullPath: ID!) {
  project(fullPath: $fullPath) {
    issue(iid: $iid) {
      id
      alertManagementAlert {
        iid
        title
        detailsUrl
        severity
        status
        startedAt
        eventCount
        monitoringTool
        service
        description
        endedAt
        hosts
        details
      }
    }
  }
}