Hi!
I have a @rest graphql query that works perfectly in development/browser, but when I run the same code on the server (SSR), it fails with a long cryptic error message.
(if I disable the @rest directive, everything else works flawlessly, both in browser and in SSR).
The stack trace:
(node:26034) UnhandledPromiseRejectionWarning: Error: Network error: current.forEach is not a function
at new ApolloError (.../demo-component/node_modules/src/errors/ApolloError.ts:56:5)
at .../demo-component/node_modules/src/core/QueryManager.ts:512:31
at .../demo-component/node_modules/src/core/QueryManager.ts:1046:11
at Array.forEach (<anonymous>)
at .../demo-component/node_modules/src/core/QueryManager.ts:1045:10
at Map.forEach (<anonymous>)
at QueryManager.broadcastQueries (.../demo-component/node_modules/src/core/QueryManager.ts:1039:18)
at .../demo-component/node_modules/src/core/QueryManager.ts:411:18
(node:26034) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 5)
(node:26034) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Please advice :/
Hi!
I have a
@restgraphql query that works perfectly in development/browser, but when I run the same code on the server (SSR), it fails with a long cryptic error message.(if I disable the
@restdirective, everything else works flawlessly, both in browser and in SSR).The stack trace:
Please advice :/