-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
An example GraphQL query that gathers most required information is
{
repository(owner: "owncloud", name: "core") {
issues(first: 100) {
nodes {
createdAt
number
timelineItems(itemTypes: [CLOSED_EVENT, REOPENED_EVENT], first: 10) {
nodes {
__typename
... on ClosedEvent {
createdAt
}
... on ReopenedEvent {
createdAt
}
}
pageInfo {
hasNextPage
}
}
}
pageInfo {
endCursor
hasNextPage
}
}
}
rateLimit {
limit
cost
remaining
resetAt
}
}It is so cheap that we probably don’t need API token for public repositories.
Metadata
Metadata
Assignees
Labels
No labels