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

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

14 lines
257 B
GraphQL
Raw Normal View History

2021-09-30 23:02:18 +05:30
query mergeRequestTodos($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: mergeRequest(iid: $iid) {
id
currentUserTodos(state: pending) {
nodes {
id
}
}
}
}
}