20 lines
304 B
GraphQL
20 lines
304 B
GraphQL
query issue($projectPath: ID!, $iid: String!) {
|
|
project(fullPath: $projectPath) {
|
|
id
|
|
issue(iid: $iid) {
|
|
id
|
|
title
|
|
createdAt
|
|
state
|
|
confidential
|
|
dueDate
|
|
milestone {
|
|
id
|
|
title
|
|
startDate
|
|
dueDate
|
|
}
|
|
type
|
|
}
|
|
}
|
|
}
|