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

alert.fragment.graphql « fragments « graphql_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41e7ed98c78208641cea1d1054ef7303e2590e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
fragment AlertListItem on AlertManagementAlert {
  iid
  title
  severity
  status
  startedAt
  eventCount
  issue {
    iid
    state
    title
    webUrl
  }
  assignees {
    nodes {
      name
      username
      avatarUrl
      webUrl
    }
  }
}