32 lines
606 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|