15 lines
277 B
GraphQL
15 lines
277 B
GraphQL
query NotableIssues {
|
|
user(login: "$login") {
|
|
$type($after first: 100, orderBy: {field: CREATED_AT, direction: DESC}) {
|
|
totalCount
|
|
edges {
|
|
cursor
|
|
node {
|
|
repository {
|
|
nameWithOwner
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |