18 lines
354 B
GraphQL
18 lines
354 B
GraphQL
query ProjectsUserLegacy {
|
|
$account(login: "$login") {
|
|
projects(last: $limit, states: OPEN, orderBy: {field: UPDATED_AT, direction: DESC}) {
|
|
totalCount
|
|
nodes {
|
|
name
|
|
body
|
|
updatedAt
|
|
progress {
|
|
doneCount
|
|
inProgressCount
|
|
todoCount
|
|
enabled
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |