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

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

12 lines
202 B
GraphQL
Raw Normal View History

2021-04-29 21:17:54 +05:30
query issueDueDate($fullPath: ID!, $iid: String) {
workspace: project(fullPath: $fullPath) {
__typename
2022-01-26 12:08:38 +05:30
id
2021-04-29 21:17:54 +05:30
issuable: issue(iid: $iid) {
__typename
id
dueDate
}
}
}