We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Subscriptions throw
RangeError Maximum call stack size exceeded
export const SubscriptionThunder = (fn) => (operation, graphqlOptions) => (o, ops) => { const returnedFunction = fn(Zeus(operation, o, { operationOptions: ops, scalars: graphqlOptions?.scalars, })); if (returnedFunction?.on) { returnedFunction.on = (fnToCall) => returnedFunction.on((data) => { // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Self-calling function if (graphqlOptions?.scalars) { return fnToCall(decodeScalarsInResponse({ response: data, initialOp: operation, initialZeusQuery: o, returns: ReturnTypes, scalars: graphqlOptions.scalars, ops: Ops, })); } return fnToCall(data); }); } return returnedFunction; };
The text was updated successfully, but these errors were encountered:
fix: fixed maximum call stack size exceeded graphql-editor#313
ae9a1e8
I've added the fix to #301
Sorry, something went wrong.
f0a0f2c
9fe02f5
Fixed by #301
No branches or pull requests
Subscriptions throw
The text was updated successfully, but these errors were encountered: