2021-09-30 23:02:18 +05:30
|
|
|
query issueTodos($fullPath: ID!, $iid: String!) {
|
|
|
|
workspace: project(fullPath: $fullPath) {
|
2022-01-26 12:08:38 +05:30
|
|
|
id
|
2021-09-30 23:02:18 +05:30
|
|
|
issuable: issue(iid: $iid) {
|
|
|
|
id
|
|
|
|
currentUserTodos(state: pending) {
|
|
|
|
nodes {
|
|
|
|
id
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|