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