mirror of
https://github.com/k0shk0sh/FastHub.git
synced 2026-01-25 14:47:05 +00:00
28 lines
516 B
GraphQL
28 lines
516 B
GraphQL
query getPinnedRepos($login: String!) {
|
|
user(login: $login) {
|
|
pinnedRepositories(first: 100) {
|
|
edges {
|
|
node {
|
|
name
|
|
url
|
|
issues(states: OPEN) {
|
|
totalCount
|
|
}
|
|
pullRequests(states: OPEN) {
|
|
totalCount
|
|
}
|
|
stargazers {
|
|
totalCount
|
|
}
|
|
forks {
|
|
totalCount
|
|
}
|
|
primaryLanguage {
|
|
name
|
|
color
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |