jraph
v3.3.7
Published
A fetch wrapper for GraphQL
Downloads
62
Maintainers
Readme
jraph
A simple fetch-wrapper for making GraphQL API calls in a jiff!
Designed to feel similar to using apollo's graphql-tag function.
Options
Jraph takes two parameters
URL
- a URL string, this should be the URL to your graph-ql endpoint
Options
- Basically just fetch params
- Only works with post-requests right now please bear with me.
Basic Example
import {jraph} from 'jraph';
const gql = jraph("https://csb-xpwq1o2824-xravvsjkul.now.sh/");
async function getItems(){
return gql`{
items{
title
info
}
}
`
}