Files
metrics/source/plugins/notable/queries/contributions.graphql

27 lines
554 B
GraphQL

query NotableContributions {
user(login: "$login") {
repositoriesContributedTo($after first: $repositories, contributionTypes: COMMIT, orderBy: { field: STARGAZERS, direction: DESC }) {
edges {
cursor
node {
isInOrganization
owner {
login
avatarUrl
}
nameWithOwner
watchers {
totalCount
}
forks {
totalCount
}
stargazers {
totalCount
}
}
}
}
}
}