Skip to content

Commit

Permalink
some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gilgardosh committed Jan 10, 2023
1 parent f016d2a commit 48bb41f
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 67 deletions.
32 changes: 0 additions & 32 deletions packages/loaders/openapi/src/bundle.ts

This file was deleted.

33 changes: 0 additions & 33 deletions packages/loaders/raml/src/bundle.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/types/src/config-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@
},
"subscriptionsEndpoint": {
"type": "string",
"description": "URL of custom endpoint for websocket connection for subscriptions"
"description": "URL to your endpoint serving all subscription queries for this source"
},
"retry": {
"type": "integer",
Expand Down
2 changes: 1 addition & 1 deletion packages/types/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ export interface GraphQLHandlerHTTPConfiguration {
/**
* URL to your endpoint serving all subscription queries for this source
*/
subscriptionsEndpoint: string;
subscriptionsEndpoint?: string;
/**
* Retry attempts if fails
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ You can separately give schema introspection or SDL
* `subscriptionsProtocol` (type: `String (SSE | WS | LEGACY_WS)`) - SSE - Server Sent Events
WS - New graphql-ws
LEGACY_WS - Legacy subscriptions-transport-ws
* `subscriptionsEndpoint` (type: `String`) - URL to your endpoint serving all subscription queries for this source
* `retry` (type: `Int`) - Retry attempts if fails
* `timeout` (type: `Int`) - Timeout in milliseconds
* `batch` (type: `Boolean`) - Enable/Disable automatic query batching

0 comments on commit 48bb41f

Please sign in to comment.