11 lines
216 B
GraphQL
11 lines
216 B
GraphQL
|
query mergeRequestSubscribed($fullPath: ID!, $iid: String!) {
|
||
|
workspace: project(fullPath: $fullPath) {
|
||
|
__typename
|
||
|
issuable: mergeRequest(iid: $iid) {
|
||
|
__typename
|
||
|
id
|
||
|
subscribed
|
||
|
}
|
||
|
}
|
||
|
}
|