@constructive-io/graphql-realtime-test 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,23 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Dan Lynch <pyramation@gmail.com>
4
+ Copyright (c) 2025 Constructive <developers@constructive.io>
5
+ Copyright (c) 2020-present, Interweb, Inc.
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in all
15
+ copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,86 @@
1
+ # @constructive-io/graphql-realtime-test
2
+
3
+ Constructive-level wrapper around `graphile-realtime-test` that pre-loads the
4
+ full `ConstructivePreset` (auth, RLS, storage, search, realtime subscriptions,
5
+ etc.) into the GraphQL schema used for subscription testing.
6
+
7
+ This mirrors the relationship between `graphile-test` and
8
+ `@constructive-io/graphql-test`: a thin layer that swaps `MinimalPreset` for
9
+ `ConstructivePreset` so tests run against the real Constructive plugin stack.
10
+
11
+ ## Usage
12
+
13
+ ```typescript
14
+ import { getConnections } from '@constructive-io/graphql-realtime-test';
15
+
16
+ const conn = await getConnections({
17
+ schemas: ['app_public'],
18
+ seed: 'path/to/seed.sql',
19
+ realtimeTables: ['items'],
20
+ buildPgSettings: (params) => ({
21
+ role: 'authenticated',
22
+ 'jwt.claims.user_id': params.user_id,
23
+ }),
24
+ });
25
+
26
+ // conn.ws.createClient(), conn.notifyChange(), etc.
27
+ await conn.teardown();
28
+ ```
29
+
30
+ ---
31
+
32
+ ## Education and Tutorials
33
+
34
+ 1. 🚀 [Quickstart: Getting Up and Running](https://constructive.io/learn/quickstart)
35
+ Get started with modular databases in minutes. Install prerequisites and deploy your first module.
36
+
37
+ 2. 📦 [Modular PostgreSQL Development with Database Packages](https://constructive.io/learn/modular-postgres)
38
+ Learn to organize PostgreSQL projects with pgpm workspaces and reusable database modules.
39
+
40
+ 3. ✏️ [Authoring Database Changes](https://constructive.io/learn/authoring-database-changes)
41
+ Master the workflow for adding, organizing, and managing database changes with pgpm.
42
+
43
+ 4. 🧪 [End-to-End PostgreSQL Testing with TypeScript](https://constructive.io/learn/e2e-postgres-testing)
44
+ Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
45
+
46
+ 5. ⚡ [Supabase Testing](https://constructive.io/learn/supabase)
47
+ Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
48
+
49
+ 6. 💧 [Drizzle ORM Testing](https://constructive.io/learn/drizzle-testing)
50
+ Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
51
+
52
+ 7. 🔧 [Troubleshooting](https://constructive.io/learn/troubleshooting)
53
+ Common issues and solutions for pgpm, PostgreSQL, and testing.
54
+
55
+ ## Related Constructive Tooling
56
+
57
+ ### 📦 Package Management
58
+
59
+ * [pgpm](https://github.com/constructive-io/constructive/tree/main/pgpm/pgpm): **🖥️ PostgreSQL Package Manager** for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
60
+
61
+ ### 🧪 Testing
62
+
63
+ * [pgsql-test](https://github.com/constructive-io/constructive/tree/main/postgres/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
64
+ * [pgsql-seed](https://github.com/constructive-io/constructive/tree/main/postgres/pgsql-seed): **🌱 PostgreSQL seeding utilities** for CSV, JSON, SQL data loading, and pgpm deployment.
65
+ * [supabase-test](https://github.com/constructive-io/constructive/tree/main/postgres/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
66
+ * [graphile-test](https://github.com/constructive-io/constructive/tree/main/graphile/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
67
+ * [pg-query-context](https://github.com/constructive-io/constructive/tree/main/postgres/pg-query-context): **🔒 Session context injection** to add session-local context (e.g., `SET LOCAL`) into queries—ideal for setting `role`, `jwt.claims`, and other session settings.
68
+
69
+ ### 🧠 Parsing & AST
70
+
71
+ * [pgsql-parser](https://www.npmjs.com/package/pgsql-parser): **🔄 SQL conversion engine** that interprets and converts PostgreSQL syntax.
72
+ * [libpg-query-node](https://www.npmjs.com/package/libpg-query): **🌉 Node.js bindings** for `libpg_query`, converting SQL into parse trees.
73
+ * [pg-proto-parser](https://www.npmjs.com/package/pg-proto-parser): **📦 Protobuf parser** for parsing PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.
74
+ * [@pgsql/enums](https://www.npmjs.com/package/@pgsql/enums): **🏷️ TypeScript enums** for PostgreSQL AST for safe and ergonomic parsing logic.
75
+ * [@pgsql/types](https://www.npmjs.com/package/@pgsql/types): **📝 Type definitions** for PostgreSQL AST nodes in TypeScript.
76
+ * [@pgsql/utils](https://www.npmjs.com/package/@pgsql/utils): **🛠️ AST utilities** for constructing and transforming PostgreSQL syntax trees.
77
+
78
+ ## Credits
79
+
80
+ **🛠 Built by the [Constructive](https://constructive.io) team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on [GitHub](https://github.com/constructive-io).**
81
+
82
+ ## Disclaimer
83
+
84
+ AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
85
+
86
+ No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
@@ -0,0 +1,29 @@
1
+ import { getConnections as getLowLevelConnections } from 'graphile-realtime-test';
2
+ import { ConstructivePreset } from 'graphile-settings';
3
+ /**
4
+ * Creates realtime test connections using the full ConstructivePreset.
5
+ *
6
+ * This wraps `graphile-realtime-test`'s `getConnections` by injecting the
7
+ * ConstructivePreset into the schema build. The returned `GetConnectionsResult`
8
+ * includes a fully wired WebSocket server, notify helpers, and all Constructive
9
+ * plugins (auth, RLS, storage, search, realtime subscriptions, etc.).
10
+ *
11
+ * Mirrors the pattern of `@constructive-io/graphql-test`'s `getConnections`
12
+ * wrapping `graphile-test`.
13
+ */
14
+ export async function getConnections(input, seedAdapters) {
15
+ const mergedInput = {
16
+ ...input,
17
+ preset: {
18
+ extends: [
19
+ ConstructivePreset,
20
+ ...(input.preset?.extends ?? []),
21
+ ],
22
+ ...(input.preset?.disablePlugins && { disablePlugins: input.preset.disablePlugins }),
23
+ ...(input.preset?.plugins && { plugins: input.preset.plugins }),
24
+ ...(input.preset?.schema && { schema: input.preset.schema }),
25
+ ...(input.preset?.grafast && { grafast: input.preset.grafast }),
26
+ },
27
+ };
28
+ return getLowLevelConnections(mergedInput, seedAdapters);
29
+ }
@@ -0,0 +1,29 @@
1
+ import { createRealtimeTestContext } from 'graphile-realtime-test';
2
+ import { ConstructivePreset } from 'graphile-settings';
3
+ /**
4
+ * Creates a realtime test context using the full ConstructivePreset.
5
+ *
6
+ * This is the Constructive-specific wrapper that pre-loads all plugins
7
+ * from graphile-settings (auth, RLS, storage, search, etc.) into the
8
+ * realtime subscription schema. For generic realtime testing without
9
+ * the Constructive preset, use graphile-realtime-test directly.
10
+ *
11
+ * Mirrors the pattern of `@constructive-io/graphql-test`'s `GraphQLTest`
12
+ * wrapping `graphile-test`.
13
+ */
14
+ export async function createConstructiveRealtimeTestContext(input, seedAdapters) {
15
+ const mergedInput = {
16
+ ...input,
17
+ preset: {
18
+ extends: [
19
+ ConstructivePreset,
20
+ ...(input.preset?.extends ?? []),
21
+ ],
22
+ ...(input.preset?.disablePlugins && { disablePlugins: input.preset.disablePlugins }),
23
+ ...(input.preset?.plugins && { plugins: input.preset.plugins }),
24
+ ...(input.preset?.schema && { schema: input.preset.schema }),
25
+ ...(input.preset?.grafast && { grafast: input.preset.grafast }),
26
+ },
27
+ };
28
+ return createRealtimeTestContext(mergedInput, seedAdapters);
29
+ }
package/esm/index.js ADDED
@@ -0,0 +1,12 @@
1
+ // Re-export low-level utilities that don't need Constructive wrapping
2
+ export { subscribe, waitForEvent, collectEvents, } from 'graphile-realtime-test';
3
+ export { notify, notifyChange, notifyInvalidate, buildPayload, buildInvalidatePayload, } from 'graphile-realtime-test';
4
+ export { nextEvent, collectWsEvents, delay, } from 'graphile-realtime-test';
5
+ export { createWsTestServer } from 'graphile-realtime-test';
6
+ export { makeRealtimeSmartTagsPlugin } from 'graphile-realtime-test';
7
+ // Re-export low-level DB connection utilities for advanced two-phase patterns
8
+ export { getConnections as getDbConnections } from 'pgsql-test';
9
+ export { seed, snapshot } from 'pgsql-test';
10
+ // Override with our Constructive-specific implementations
11
+ export { createConstructiveRealtimeTestContext } from './graphile-test';
12
+ export { getConnections } from './get-connections';
@@ -0,0 +1,14 @@
1
+ import type { GetConnectionsInput, GetConnectionsResult } from 'graphile-realtime-test';
2
+ import type { SeedAdapter } from 'pgsql-test/seed/types';
3
+ /**
4
+ * Creates realtime test connections using the full ConstructivePreset.
5
+ *
6
+ * This wraps `graphile-realtime-test`'s `getConnections` by injecting the
7
+ * ConstructivePreset into the schema build. The returned `GetConnectionsResult`
8
+ * includes a fully wired WebSocket server, notify helpers, and all Constructive
9
+ * plugins (auth, RLS, storage, search, realtime subscriptions, etc.).
10
+ *
11
+ * Mirrors the pattern of `@constructive-io/graphql-test`'s `getConnections`
12
+ * wrapping `graphile-test`.
13
+ */
14
+ export declare function getConnections(input: GetConnectionsInput, seedAdapters?: SeedAdapter[]): Promise<GetConnectionsResult>;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getConnections = getConnections;
4
+ const graphile_realtime_test_1 = require("graphile-realtime-test");
5
+ const graphile_settings_1 = require("graphile-settings");
6
+ /**
7
+ * Creates realtime test connections using the full ConstructivePreset.
8
+ *
9
+ * This wraps `graphile-realtime-test`'s `getConnections` by injecting the
10
+ * ConstructivePreset into the schema build. The returned `GetConnectionsResult`
11
+ * includes a fully wired WebSocket server, notify helpers, and all Constructive
12
+ * plugins (auth, RLS, storage, search, realtime subscriptions, etc.).
13
+ *
14
+ * Mirrors the pattern of `@constructive-io/graphql-test`'s `getConnections`
15
+ * wrapping `graphile-test`.
16
+ */
17
+ async function getConnections(input, seedAdapters) {
18
+ const mergedInput = {
19
+ ...input,
20
+ preset: {
21
+ extends: [
22
+ graphile_settings_1.ConstructivePreset,
23
+ ...(input.preset?.extends ?? []),
24
+ ],
25
+ ...(input.preset?.disablePlugins && { disablePlugins: input.preset.disablePlugins }),
26
+ ...(input.preset?.plugins && { plugins: input.preset.plugins }),
27
+ ...(input.preset?.schema && { schema: input.preset.schema }),
28
+ ...(input.preset?.grafast && { grafast: input.preset.grafast }),
29
+ },
30
+ };
31
+ return (0, graphile_realtime_test_1.getConnections)(mergedInput, seedAdapters);
32
+ }
@@ -0,0 +1,14 @@
1
+ import type { RealtimeTestInput, RealtimeTestContext } from 'graphile-realtime-test';
2
+ import type { SeedAdapter } from 'pgsql-test/seed/types';
3
+ /**
4
+ * Creates a realtime test context using the full ConstructivePreset.
5
+ *
6
+ * This is the Constructive-specific wrapper that pre-loads all plugins
7
+ * from graphile-settings (auth, RLS, storage, search, etc.) into the
8
+ * realtime subscription schema. For generic realtime testing without
9
+ * the Constructive preset, use graphile-realtime-test directly.
10
+ *
11
+ * Mirrors the pattern of `@constructive-io/graphql-test`'s `GraphQLTest`
12
+ * wrapping `graphile-test`.
13
+ */
14
+ export declare function createConstructiveRealtimeTestContext(input: RealtimeTestInput, seedAdapters?: SeedAdapter[]): Promise<RealtimeTestContext>;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.createConstructiveRealtimeTestContext = createConstructiveRealtimeTestContext;
4
+ const graphile_realtime_test_1 = require("graphile-realtime-test");
5
+ const graphile_settings_1 = require("graphile-settings");
6
+ /**
7
+ * Creates a realtime test context using the full ConstructivePreset.
8
+ *
9
+ * This is the Constructive-specific wrapper that pre-loads all plugins
10
+ * from graphile-settings (auth, RLS, storage, search, etc.) into the
11
+ * realtime subscription schema. For generic realtime testing without
12
+ * the Constructive preset, use graphile-realtime-test directly.
13
+ *
14
+ * Mirrors the pattern of `@constructive-io/graphql-test`'s `GraphQLTest`
15
+ * wrapping `graphile-test`.
16
+ */
17
+ async function createConstructiveRealtimeTestContext(input, seedAdapters) {
18
+ const mergedInput = {
19
+ ...input,
20
+ preset: {
21
+ extends: [
22
+ graphile_settings_1.ConstructivePreset,
23
+ ...(input.preset?.extends ?? []),
24
+ ],
25
+ ...(input.preset?.disablePlugins && { disablePlugins: input.preset.disablePlugins }),
26
+ ...(input.preset?.plugins && { plugins: input.preset.plugins }),
27
+ ...(input.preset?.schema && { schema: input.preset.schema }),
28
+ ...(input.preset?.grafast && { grafast: input.preset.grafast }),
29
+ },
30
+ };
31
+ return (0, graphile_realtime_test_1.createRealtimeTestContext)(mergedInput, seedAdapters);
32
+ }
package/index.d.ts ADDED
@@ -0,0 +1,15 @@
1
+ export type { RealtimeTestInput, RealtimeTestContext, } from 'graphile-realtime-test';
2
+ export type { GetConnectionsInput, GetConnectionsResult, WsHandle, } from 'graphile-realtime-test';
3
+ export type { SubscriptionEvent, SubscribeOptions, } from 'graphile-realtime-test';
4
+ export type { WsTestServerInput, WsTestServer, } from 'graphile-realtime-test';
5
+ export { subscribe, waitForEvent, collectEvents, } from 'graphile-realtime-test';
6
+ export { notify, notifyChange, notifyInvalidate, buildPayload, buildInvalidatePayload, } from 'graphile-realtime-test';
7
+ export { nextEvent, collectWsEvents, delay, } from 'graphile-realtime-test';
8
+ export { createWsTestServer } from 'graphile-realtime-test';
9
+ export { makeRealtimeSmartTagsPlugin } from 'graphile-realtime-test';
10
+ export { getConnections as getDbConnections } from 'pgsql-test';
11
+ export type { GetConnectionResult, GetConnectionOpts } from 'pgsql-test';
12
+ export type { PgTestClient } from 'pgsql-test/test-client';
13
+ export { seed, snapshot } from 'pgsql-test';
14
+ export { createConstructiveRealtimeTestContext } from './graphile-test';
15
+ export { getConnections } from './get-connections';
package/index.js ADDED
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getConnections = exports.createConstructiveRealtimeTestContext = exports.snapshot = exports.seed = exports.getDbConnections = exports.makeRealtimeSmartTagsPlugin = exports.createWsTestServer = exports.delay = exports.collectWsEvents = exports.nextEvent = exports.buildInvalidatePayload = exports.buildPayload = exports.notifyInvalidate = exports.notifyChange = exports.notify = exports.collectEvents = exports.waitForEvent = exports.subscribe = void 0;
4
+ // Re-export low-level utilities that don't need Constructive wrapping
5
+ var graphile_realtime_test_1 = require("graphile-realtime-test");
6
+ Object.defineProperty(exports, "subscribe", { enumerable: true, get: function () { return graphile_realtime_test_1.subscribe; } });
7
+ Object.defineProperty(exports, "waitForEvent", { enumerable: true, get: function () { return graphile_realtime_test_1.waitForEvent; } });
8
+ Object.defineProperty(exports, "collectEvents", { enumerable: true, get: function () { return graphile_realtime_test_1.collectEvents; } });
9
+ var graphile_realtime_test_2 = require("graphile-realtime-test");
10
+ Object.defineProperty(exports, "notify", { enumerable: true, get: function () { return graphile_realtime_test_2.notify; } });
11
+ Object.defineProperty(exports, "notifyChange", { enumerable: true, get: function () { return graphile_realtime_test_2.notifyChange; } });
12
+ Object.defineProperty(exports, "notifyInvalidate", { enumerable: true, get: function () { return graphile_realtime_test_2.notifyInvalidate; } });
13
+ Object.defineProperty(exports, "buildPayload", { enumerable: true, get: function () { return graphile_realtime_test_2.buildPayload; } });
14
+ Object.defineProperty(exports, "buildInvalidatePayload", { enumerable: true, get: function () { return graphile_realtime_test_2.buildInvalidatePayload; } });
15
+ var graphile_realtime_test_3 = require("graphile-realtime-test");
16
+ Object.defineProperty(exports, "nextEvent", { enumerable: true, get: function () { return graphile_realtime_test_3.nextEvent; } });
17
+ Object.defineProperty(exports, "collectWsEvents", { enumerable: true, get: function () { return graphile_realtime_test_3.collectWsEvents; } });
18
+ Object.defineProperty(exports, "delay", { enumerable: true, get: function () { return graphile_realtime_test_3.delay; } });
19
+ var graphile_realtime_test_4 = require("graphile-realtime-test");
20
+ Object.defineProperty(exports, "createWsTestServer", { enumerable: true, get: function () { return graphile_realtime_test_4.createWsTestServer; } });
21
+ var graphile_realtime_test_5 = require("graphile-realtime-test");
22
+ Object.defineProperty(exports, "makeRealtimeSmartTagsPlugin", { enumerable: true, get: function () { return graphile_realtime_test_5.makeRealtimeSmartTagsPlugin; } });
23
+ // Re-export low-level DB connection utilities for advanced two-phase patterns
24
+ var pgsql_test_1 = require("pgsql-test");
25
+ Object.defineProperty(exports, "getDbConnections", { enumerable: true, get: function () { return pgsql_test_1.getConnections; } });
26
+ var pgsql_test_2 = require("pgsql-test");
27
+ Object.defineProperty(exports, "seed", { enumerable: true, get: function () { return pgsql_test_2.seed; } });
28
+ Object.defineProperty(exports, "snapshot", { enumerable: true, get: function () { return pgsql_test_2.snapshot; } });
29
+ // Override with our Constructive-specific implementations
30
+ var graphile_test_1 = require("./graphile-test");
31
+ Object.defineProperty(exports, "createConstructiveRealtimeTestContext", { enumerable: true, get: function () { return graphile_test_1.createConstructiveRealtimeTestContext; } });
32
+ var get_connections_1 = require("./get-connections");
33
+ Object.defineProperty(exports, "getConnections", { enumerable: true, get: function () { return get_connections_1.getConnections; } });
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@constructive-io/graphql-realtime-test",
3
+ "version": "0.2.0",
4
+ "author": "Constructive <developers@constructive.io>",
5
+ "description": "Constructive Realtime GraphQL Testing with all plugins loaded",
6
+ "main": "index.js",
7
+ "module": "esm/index.js",
8
+ "types": "index.d.ts",
9
+ "homepage": "https://github.com/constructive-io/constructive",
10
+ "license": "MIT",
11
+ "publishConfig": {
12
+ "access": "public",
13
+ "directory": "dist"
14
+ },
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/constructive-io/constructive"
18
+ },
19
+ "bugs": {
20
+ "url": "https://github.com/constructive-io/constructive/issues"
21
+ },
22
+ "scripts": {
23
+ "clean": "makage clean",
24
+ "prepack": "npm run build",
25
+ "build": "makage build",
26
+ "build:dev": "makage build --dev",
27
+ "lint": "eslint . --fix",
28
+ "test": "jest --passWithNoTests",
29
+ "test:watch": "jest --watch"
30
+ },
31
+ "dependencies": {
32
+ "@constructive-io/graphql-test": "^4.19.2",
33
+ "graphile-realtime-test": "^0.6.0",
34
+ "graphile-settings": "^5.2.0",
35
+ "graphile-test": "^4.15.0"
36
+ },
37
+ "peerDependencies": {
38
+ "grafast": "1.0.0",
39
+ "graphile-build": "5.0.0",
40
+ "graphile-build-pg": "5.0.0",
41
+ "graphile-config": "1.0.0",
42
+ "graphql": "16.13.0",
43
+ "graphql-ws": "^6.0.8",
44
+ "pg": "^8.20.0",
45
+ "postgraphile": "5.0.0",
46
+ "ws": "^8.20.0"
47
+ },
48
+ "devDependencies": {
49
+ "@types/pg": "^8.18.0",
50
+ "@types/ws": "^8.18.1",
51
+ "makage": "^0.3.0",
52
+ "pgsql-test": "^4.14.0"
53
+ },
54
+ "keywords": [
55
+ "testing",
56
+ "graphql",
57
+ "graphile",
58
+ "constructive",
59
+ "subscriptions",
60
+ "realtime",
61
+ "test"
62
+ ],
63
+ "gitHead": "4265b835743ff8e0240dc1fcbcceec85a9846ff7"
64
+ }