diff --git a/src/fetcher.ts b/src/fetcher.ts index 1b22cde..345eeff 100644 --- a/src/fetcher.ts +++ b/src/fetcher.ts @@ -34,7 +34,7 @@ export const graphQLFetcher = (subscriptionsClient: SubscriptionClient, fallback variables: graphQLParams.variables, }, function (error, result) { if (error) { - observer.error(error); + observer.error(JSON.stringify(error)); } else { observer.next(result); }