25 lines
567 B
GraphQL
25 lines
567 B
GraphQL
query ProjectsRepository {
|
|
$account(login: "$user") {
|
|
repository(name: "$repository") {
|
|
projectV2(number: $id) {
|
|
name: title
|
|
body: shortDescription
|
|
updatedAt
|
|
items(first: 4, orderBy: {field: POSITION, direction: ASC}) {
|
|
totalCount
|
|
nodes {
|
|
type
|
|
isArchived
|
|
fieldValues(last: 100) {
|
|
nodes {
|
|
... on ProjectV2ItemFieldTextValue {
|
|
text
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |