9 lines
178 B
GraphQL
9 lines
178 B
GraphQL
query epicReference($fullPath: ID!, $iid: ID) {
|
|
workspace: group(fullPath: $fullPath) {
|
|
id
|
|
issuable: epic(iid: $iid) {
|
|
id
|
|
reference(full: true)
|
|
}
|
|
}
|
|
}
|