npm install graphin``js
import Graphin from 'graphin';
const graphin = new Graphin('https://my.graphql.endpoint.com');
// Simple GraphQL query
graphin.query({
userList {
login
name
email
}
})
.then(list => {
console.log(data.userList);
});
// List of users cached for a minute
graphin.query({
photoList {
id
url
description
width
height
}
}, {cache: 60000})
.then(data => {
console.log(data.photoList);
});
// Simple GraphQL mutation
graphin.query(mutation {
updatePhoto(id: 100500, description: "Photo of a real Unicorn!") {
id
}
});`
| Param | Type | Description |
| --- | --- | --- |
| endpoint | string | GraphQL endpoint URL |
| options | object|undefined | Graphin general options. Affect all requests. Default {} |
| options.cache | number | Cache TTL in ms |
| options.fetch | object | Fetch options |
| options.verbose | boolean | Verbose mode. Default false |
| fetcher | function|undefined | Fetch function (url, options) => Promise. Default fetch |
-----------------
| Param | Type | Description |
| --- | --- | --- |
| url | string | GraphQL Query |
| requestOptions | object|undefined | Request options. Affect only this request. Merge with general options. Default {} |
| requestOptions.cache | number | Cache TTL in ms |
| requestOptions.fetch | object | Fetch options |
| requestOptions.verbose | boolean | Verbose mode. Default false |
-----------------
| Param | Type | Description |
| --- | --- | --- |
| query | string` | GraphQL Query |