Small http client based on the fetch api. Uses isomorphic-fetch for wider support
npm install graphql-clientIf query fails, errors are thrown with messages and query highlight for easy debug
javascript
npm install graphql-client -S
`How To
Initialize the client
`javascript
var client = require('graphql-client')({
url: 'http://your-host/graphql',
headers: {
Authorization: 'Bearer ' + token
}
})
`Use the promise API
WARNING: Make sure the Promise API is polyfilled for older browsers, you can use es6-promise
`javascript
var variables = {
query: "Search Query",
limit: 100,
from: 200
} client.query(
, variables, function(req, res) {
if(res.status === 401) {
throw new Error('Not authorized')
}
})
.then(function(body) {
console.log(body)
})
.catch(function(err) {
console.log(err.message)
})
``