Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/imsky/github-graphql-client

:octocat: Node.js client for the GitHub GraphQL API with zero dependencies
https://github.com/imsky/github-graphql-client

github graphql nodejs

Last synced: about 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

![CI](https://github.com/imsky/github-graphql-client/workflows/CI/badge.svg)

# GitHub GraphQL Client

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

## Usage

```js
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](http://opensource.org/licenses/MIT)

## Credits

Made by [Ivan Malopinsky](http://imsky.co).