Skip to content

Releases: deno-libs/gql

1.1.1

23 Jan 16:33
Compare
Choose a tag to compare
chore: bump std

1.1.0: new option `playgroundOptions`

22 Sep 10:00
Compare
Choose a tag to compare

v1.1 adds a new option to configure GraphQL Playground:

const app = GraphQLHTTP({
  graphiql: true,
  schema,
  rootValue,
  playgroundOptions: {
    cdnUrl: 'https://unpkg.com'
  }
})

1.0.0: use new `std/http` API

22 Sep 09:40
Compare
Choose a tag to compare

The v1 version now supports new std/http API which is based on native HTTP server.

0.2.2

28 Aug 13:54
Compare
Choose a tag to compare
bump deps

0.2.1

11 Aug 15:51
Compare
Choose a tag to compare
bump deps

v0.2: New property - `headers`

05 Aug 12:04
Compare
Choose a tag to compare

You can now set custom HTTP headers for GraphQLHTTP handler:

GraphQLHTTP({ schema, headers: { Key: 'Value' } })

0.1.8

30 Jul 11:01
Compare
Choose a tag to compare
bump std & examples

0.1.7

17 Jul 07:32
Compare
Choose a tag to compare
send bad request if Accept value doesn't include type/html with `grap…

0.1.6

16 Jul 23:14
Compare
Choose a tag to compare
std & examples bump

0.1.5

05 Jul 10:11
Compare
Choose a tag to compare
bump std & examples