Replies: 1 comment
-
Hi, yes I had the same problem, solved it by creating a copy of the result |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I have the following code:
const GetChatsQuery = gql
query($withBlocked: Boolean) { userChats(withBlocked: $withBlocked) { ${ GetChatGraphQL(10) } } };
The thing is that I'm getting an error on the push method:
Cannot add property 2, object is not extensible
As I understood from the internet it means that the object is frozen (Object.freeze).
Have anyone had that problem before? how can I solve it?
Beta Was this translation helpful? Give feedback.
All reactions