From 23b534a107bc6eff56527aaf32df00cbc059ee41 Mon Sep 17 00:00:00 2001 From: Urigo Date: Tue, 28 Mar 2017 20:29:12 +0300 Subject: [PATCH] feat(subscriptions): added missing "?" to props definition --- packages/graphql-server-module-graphiql/src/renderGraphiQL.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/graphql-server-module-graphiql/src/renderGraphiQL.ts b/packages/graphql-server-module-graphiql/src/renderGraphiQL.ts index 020ef094..06ed2f64 100644 --- a/packages/graphql-server-module-graphiql/src/renderGraphiQL.ts +++ b/packages/graphql-server-module-graphiql/src/renderGraphiQL.ts @@ -20,7 +20,7 @@ export type GraphiQLData = { endpointURL: string, - subscriptionsEndpoint: string, + subscriptionsEndpoint?: string, query?: string, variables?: Object, operationName?: string,