11 lines
211 B
GraphQL
11 lines
211 B
GraphQL
|
query issueReference($fullPath: ID!, $iid: String) {
|
||
|
workspace: project(fullPath: $fullPath) {
|
||
|
__typename
|
||
|
issuable: issue(iid: $iid) {
|
||
|
__typename
|
||
|
id
|
||
|
reference(full: true)
|
||
|
}
|
||
|
}
|
||
|
}
|