12 lines
222 B
GraphQL
12 lines
222 B
GraphQL
|
query issueSubscribed($fullPath: ID!, $iid: String) {
|
||
|
workspace: project(fullPath: $fullPath) {
|
||
|
__typename
|
||
|
issuable: issue(iid: $iid) {
|
||
|
__typename
|
||
|
id
|
||
|
subscribed
|
||
|
emailsDisabled
|
||
|
}
|
||
|
}
|
||
|
}
|