summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/merge_request_todo.query.graphql
blob: 65b9ef452607717d81dd428dbf08f46b756296eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query mergeRequestTodos($fullPath: ID!, $iid: String!) {
  workspace: project(fullPath: $fullPath) {
    __typename
    id
    issuable: mergeRequest(iid: $iid) {
      __typename
      id
      currentUserTodos(state: pending) {
        nodes {
          id
        }
      }
    }
  }
}