12 lines
219 B
GraphQL
12 lines
219 B
GraphQL
query epicSubscribed($fullPath: ID!, $iid: ID) {
|
|
workspace: group(fullPath: $fullPath) {
|
|
__typename
|
|
id
|
|
emailsDisabled
|
|
issuable: epic(iid: $iid) {
|
|
__typename
|
|
id
|
|
subscribed
|
|
}
|
|
}
|
|
}
|