graphql-ruby-client
Advanced tools
Comparing version 1.13.3 to 1.14.0
# graphql-ruby-client | ||
# 1.14.0 (3 Jul 2024) | ||
- Subscriptions: with Relay and ActionCable, don't send an empty query string (`""`) when using persisted operations #5008 | ||
# 1.13.3 (20 Mar 2024) | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "graphql-ruby-client", | ||
"version": "1.13.3", | ||
"version": "1.14.0", | ||
"description": "JavaScript client for graphql-ruby", | ||
@@ -24,3 +24,3 @@ "main": "index.js", | ||
"@types/zen-observable": "^0.8.2", | ||
"ably": "1.2.6", | ||
"ably": "1.2.50", | ||
"graphql": ">=15.0.0", | ||
@@ -27,0 +27,0 @@ "jest": "^29.0.0", |
@@ -46,3 +46,3 @@ "use strict"; | ||
const client = handler({ | ||
text: request.text || "", | ||
text: request.text, | ||
name: request.name, | ||
@@ -49,0 +49,0 @@ id: request.id, |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
// State management for subscriptions. | ||
// Used to add subscriptions to an Apollo network intrface. | ||
// Used to add subscriptions to an Apollo network interface. | ||
class ApolloSubscriptionRegistry { | ||
@@ -6,0 +6,0 @@ constructor() { |
@@ -161,3 +161,3 @@ "use strict"; | ||
var failed = responseData.failed.length; | ||
// These might get overriden for status output | ||
// These might get overridden for status output | ||
var notModified = responseData.not_modified.length; | ||
@@ -164,0 +164,0 @@ var added = responseData.added.length; |
144054