debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/escalation_status.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
188 B
GraphQL
Raw Normal View History

2022-05-07 20:08:51 +05:30
query escalationStatusQuery($fullPath: ID!, $iid: String) {
workspace: project(fullPath: $fullPath) {
id
issuable: issue(iid: $iid) {
id
escalationStatus
}
}
}