From 4c6194c4c2b5506f6d482347b0c13033ef17b5c7 Mon Sep 17 00:00:00 2001 From: "netop://ウィビ" Date: Fri, 24 Apr 2026 07:43:33 -0700 Subject: initial commit --- entry.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 entry.ts (limited to 'entry.ts') 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"; -- cgit v1.2.3