kowainik / github-graphql

🕸️ GraphQL bindings to GitHub API
https://kowainik.github.io/projects/github-graphql
Mozilla Public License 2.0
7 stars 0 forks source link

Render GraphQL AST pretty #5

Closed chshersh closed 3 years ago

chshersh commented 4 years ago

Example:

query { 
  repository(owner: "kowainik", name: "github-graphql") {
    issues(last: 3) {
        nodes {
          title
          author{
            login
          }
        }  
    }
  }
}