16 lines
259 B
GraphQL
16 lines
259 B
GraphQL
query RepositoriesRandom {
|
|
user(login: "$login") {
|
|
repositories(
|
|
orderBy: {field: UPDATED_AT, direction: DESC}
|
|
first: 100
|
|
privacy: PUBLIC
|
|
$affiliations
|
|
$forks
|
|
) {
|
|
nodes {
|
|
nameWithOwner
|
|
}
|
|
}
|
|
}
|
|
}
|