imsky / github-graphql-client

:octocat: Node.js client for the GitHub GraphQL API with zero dependencies

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CI

GitHub GraphQL Client

Node.js client for the GitHub GraphQL API with zero dependencies.

Usage

var client = require('github-graphql-client');

var request = client({
  token: 'your GitHub token',
  query: 'your GraphQL query'
}, function (err, res) {
  if (err) {
    // handle errors
  } else {
    // handle results
  }
});

License

MIT

Credits

Made by Ivan Malopinsky.

About

:octocat: Node.js client for the GitHub GraphQL API with zero dependencies


Languages

Language:JavaScript 100.0%