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