aboutsummaryrefslogtreecommitdiff
path: root/entry.ts
diff options
context:
space:
mode:
authornetop://ウィビ <paul@webb.page>2026-05-03 12:40:04 -0700
committernetop://ウィビ <paul@webb.page>2026-05-03 12:40:04 -0700
commit52ee736bd2ac407952863c8e8397770bf1495a45 (patch)
treef982218600682f7714a5a5157e940acc0e0e8a13 /entry.ts
parent83f2352fef7dc93396e3cf8f224acba271f1ef9d (diff)
downloadgq-52ee736bd2ac407952863c8e8397770bf1495a45.tar.gz
gq-52ee736bd2ac407952863c8e8397770bf1495a45.zip
adds support for subscriptions
Diffstat (limited to 'entry.ts')
-rwxr-xr-xentry.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/entry.ts b/entry.ts
index 54c1b3a..6c43287 100755
--- a/entry.ts
+++ b/entry.ts
@@ -5,10 +5,12 @@
export * from "./source/common.ts";
export * from "./source/http.ts";
+export * from "./source/ws.ts";
export { makeExecutableSchema as executeSchema } from "@graphql-tools/schema";
export { gql } from "./source/gql.ts";
export { importQL } from "./source/import.ts";
+export { PubSub } from "graphql-subscriptions";
export type {
DocumentNode,
@@ -21,3 +23,5 @@ export type {
GraphQLTypeResolver,
Source
} from "graphql";
+
+export type { PubSubEngine } from "graphql-subscriptions";