Files
metrics/source/queries/starred.graphql
2021-01-02 23:41:36 +01:00

32 lines
606 B
GraphQL

query Starred {
user(login: "$login") {
starredRepositories(first: $limit, orderBy: {field: STARRED_AT, direction: DESC}) {
edges {
starredAt
node {
description
forkCount
isFork
issues {
totalCount
}
nameWithOwner
openGraphImageUrl
licenseInfo {
nickname
name
}
pullRequests {
totalCount
}
stargazerCount
primaryLanguage {
color
name
}
}
}
}
}
}