- Get a collection of opened issues within repositories which have the topic "dojo"
{
search(query: "topic:dojo", type: REPOSITORY, first: 50) {
repositoryCount
pageInfo {
endCursor
startCursor
}
nodes {
... on Repository {
id
name
issues(first: 10, filterBy: {states: OPEN}) {
nodes {
number
createdAt
}
}
owner {
login
}
}
}
}
}