aboutsummaryrefslogtreecommitdiff
path: root/entry.ts
blob: f564c5c3a554dbb8d7640811f448efb8aa23ba93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * `@eol/gq` — a batteries-included GraphQL module for Deno.
 *
 * Re-exports the pieces you typically reach for when building a GraphQL API:
 * an HTTP handler, a schema builder, a `gql` tag, and a `.graphql` loader.
 *
 * @module
 */

/*** EXPORT ------------------------------------------- ***/

export * from "./source/common.ts";
export * from "./source/http.ts";

export { makeExecutableSchema as executeSchema } from "@graphql-tools/schema";
export { gql } from "./source/gql.ts";
export { importQL } from "./source/import.ts";