16 lines
313 B
GraphQL
16 lines
313 B
GraphQL
query NotableContributions {
|
|
user(login: "$login") {
|
|
repositoriesContributedTo($after first: $repositories, contributionTypes: COMMIT) {
|
|
edges {
|
|
cursor
|
|
node {
|
|
isInOrganization
|
|
owner {
|
|
login
|
|
avatarUrl
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |