Releases: deno-libs/gql
Releases · deno-libs/gql
1.1.1
chore: bump std
1.1.0: new option `playgroundOptions`
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
The v1 version now supports new std/http
API which is based on native HTTP server.
0.2.2
bump deps
0.2.1
bump deps
v0.2: New property - `headers`
You can now set custom HTTP headers for GraphQLHTTP handler:
GraphQLHTTP({ schema, headers: { Key: 'Value' } })
0.1.8
bump std & examples
0.1.7
send bad request if Accept value doesn't include type/html with `grap…
0.1.6
std & examples bump
0.1.5
bump std & examples