summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/merge_request_subscribed.query.graphql
blob: d5e27ca7b69b2f7a990fd211e2b75007a1e514c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
query mergeRequestSubscribed($fullPath: ID!, $iid: String!) {
  workspace: project(fullPath: $fullPath) {
    __typename
    id
    issuable: mergeRequest(iid: $iid) {
      __typename
      id
      subscribed
    }
  }
}