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