Skip to content

v1.3.0

Compare
Choose a tag to compare
@schickling schickling released this 19 Jul 15:27
· 976 commits to main since this release
  • Allow fetch-compatible options in constructor #9

Example:

import { GraphQLClient } from 'graphql-request'

const client = new GraphQLClient('my-endpoint', {
 credentials: 'include',
 mode: 'cors'
})

const query = `{
  Movie(title: "Inception") {
    releaseDate
    actors {
      name
    }
  }
}`

client.request(query).then(data => console.log(data))