15 lines
282 B
GraphQL
15 lines
282 B
GraphQL
|
query mergeRequestTodos($fullPath: ID!, $iid: String!) {
|
||
|
workspace: project(fullPath: $fullPath) {
|
||
|
__typename
|
||
|
issuable: mergeRequest(iid: $iid) {
|
||
|
__typename
|
||
|
id
|
||
|
currentUserTodos(state: pending) {
|
||
|
nodes {
|
||
|
id
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|