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: 10 months ago
JSON representation
:octocat: Node.js client for the GitHub GraphQL API with zero dependencies
- Host: GitHub
- URL: https://github.com/imsky/github-graphql-client
- Owner: imsky
- Created: 2017-02-28T04:02:53.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-02-11T15:13:00.000Z (almost 3 years ago)
- Last Synced: 2024-05-09T13:12:28.548Z (over 1 year ago)
- Topics: github, graphql, nodejs
- Language: JavaScript
- Size: 536 KB
- Stars: 19
- Watchers: 3
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# 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).