11 lines
202 B
GraphQL
11 lines
202 B
GraphQL
query issueDueDate($fullPath: ID!, $iid: String) {
|
|
workspace: project(fullPath: $fullPath) {
|
|
__typename
|
|
id
|
|
issuable: issue(iid: $iid) {
|
|
__typename
|
|
id
|
|
dueDate
|
|
}
|
|
}
|
|
}
|