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