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

list_item.fragment.graphql « fragments « graphql « alert_management « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c37f29c74fce05173b1cfffd121481dfe38d375e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fragment AlertListItem on AlertManagementAlert {
  iid
  title
  severity
  status
  startedAt
  eventCount
  issueIid
  assignees {
    nodes {
      username
    }
  }
}