Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 20 days 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-02-11T15:13:00.000Z (almost 2 years ago)
- Last Synced: 2024-05-09T13:12:28.548Z (6 months 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
![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).