16 lines
263 B
GraphQL
16 lines
263 B
GraphQL
query RepositoriesStarred {
|
|
user(login: "$login") {
|
|
repositories(
|
|
orderBy: {field: STARGAZERS, direction: DESC}
|
|
first: $limit
|
|
privacy: PUBLIC
|
|
$affiliations
|
|
$forks
|
|
) {
|
|
nodes {
|
|
nameWithOwner
|
|
}
|
|
}
|
|
}
|
|
}
|