debian-mirror-gitlab/app/assets/javascripts/graphql_shared/fragments/alert.fragment.graphql

22 lines
243 B
GraphQL
Raw Normal View History

2020-05-24 23:13:21 +05:30
fragment AlertListItem on AlertManagementAlert {
iid
title
severity
status
startedAt
eventCount
2021-04-17 20:07:23 +05:30
issue {
iid
state
title
}
2020-06-23 00:09:42 +05:30
assignees {
nodes {
2020-11-24 15:15:51 +05:30
name
2020-06-23 00:09:42 +05:30
username
2020-11-24 15:15:51 +05:30
avatarUrl
webUrl
2020-06-23 00:09:42 +05:30
}
}
2020-05-24 23:13:21 +05:30
}