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