/** * `@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";