We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
@FranklinYu how do you run this code?
Sorry, something went wrong.
No branches or pull requests
An example GraphQL query that gathers most required information is
It is so cheap that we probably don’t need API token for public repositories.
The text was updated successfully, but these errors were encountered: