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