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
there is a call which tries to compare two objects.
The problem I get when I switch to hermes from apollo-cache-inmemory is that these objects are circular. Proof:
The text was updated successfully, but these errors were encountered:
capaj
changed the title
RangeError: Maximum call stack size exceeded
RangeError: Maximum call stack size exceeded with a slightly complex query
Jun 1, 2019
here: https://github.com/apollographql/apollo-client/blob/451482ff85d93e1738df31007f3c2a7f0fbe8cff/packages/apollo-client/src/core/ObservableQuery.ts#L262
there is a call which tries to compare two objects.
The problem I get when I switch to hermes from
apollo-cache-inmemory
is that these objects are circular. Proof:IMHO the fix should either be to make the objects not be circular or the isEqual: https://github.com/apollographql/apollo-client/blob/451482ff85d93e1738df31007f3c2a7f0fbe8cff/packages/apollo-utilities/src/util/isEqual.ts#L4
needs to be able to handle circular objects.
I have
The text was updated successfully, but these errors were encountered: