diff options
Diffstat (limited to 'entry.ts')
| -rwxr-xr-x | entry.ts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/entry.ts b/entry.ts new file mode 100755 index 0000000..f564c5c --- /dev/null +++ b/entry.ts @@ -0,0 +1,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"; |