Files
metrics/source/plugins/projects/queries/user.graphql

26 lines
602 B
GraphQL

query ProjectsUser {
$account(login: "$login") {
projectsV2(last: $limit, orderBy: {field: UPDATED_AT, direction: DESC}) {
totalCount
nodes {
name: title
body: shortDescription
updatedAt
items(first: 4, orderBy: {field: POSITION, direction: ASC}) {
totalCount
nodes {
type
isArchived
fieldValues(last: 100) {
nodes {
... on ProjectV2ItemFieldTextValue {
text
}
}
}
}
}
}
}
}
}