This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
with this query ```qraphql query tags { repository(owner: "crystal-lang", name: "crystal") { releases(first: 3, orderBy: {field: CREATED_AT, direction: DESC}) { edges { node { name } } } refs( refPrefix: "refs/tags/" first: 3 orderBy: {field: TAG_COMMIT_DATE, direction: DESC} ) { edges { node { name } } } } } ``` returns below ``` { "message": "Personal access tokens with fine grained access do not support the GraphQL API", "documentation_url": "https://docs.github.com/graphql/guides/forming-calls-with-graphql#authenticating-with-graphql" } ```
- Loading branch information