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

get_alert.graphql « queries « graphql « incidents « components « issue_show « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
      }
    }
  }
}