diff options
| author | netop://ウィビ <paul@webb.page> | 2026-04-24 07:43:33 -0700 |
|---|---|---|
| committer | netop://ウィビ <paul@webb.page> | 2026-04-24 07:43:33 -0700 |
| commit | 4c6194c4c2b5506f6d482347b0c13033ef17b5c7 (patch) | |
| tree | 310b315b23487b9a44da94cd21a970f6cc95c831 /entry.ts | |
| download | gq-4c6194c4c2b5506f6d482347b0c13033ef17b5c7.tar.gz gq-4c6194c4c2b5506f6d482347b0c13033ef17b5c7.zip | |
initial commit
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"; |