12 lines
175 B
GraphQL
12 lines
175 B
GraphQL
|
query issue($projectPath: ID!, $iid: String!) {
|
||
|
project(fullPath: $projectPath) {
|
||
|
id
|
||
|
issue(iid: $iid) {
|
||
|
id
|
||
|
title
|
||
|
createdAt
|
||
|
state
|
||
|
}
|
||
|
}
|
||
|
}
|