You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Apollo Server 2 file uploads with Apollo Engine will cause the server to throw an error and return a 500 response to the client. Furthermore, this event will not be logged to Apollo Engine.
Using Apollo Server 2 file uploads with Apollo Engine will cause the server to throw an error and return a 500 response to the client. Furthermore, this event will not be logged to Apollo Engine.
More specifically, the following line will throw an error when it tries to stringify a file upload promise (using Apollo Server 2's file upload feature):
https://github.com/apollographql/apollo-server/blob/master/packages/apollo-engine-reporting/src/extension.ts#L141
The exception is:
This probably means that the file upload promise contains a circular reference. JSON doesn't currently support circular references (see MDN docs)
This issue will be resolved by #1668
The text was updated successfully, but these errors were encountered: