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