Replies: 1 comment
|
Hi, yes I had the same problem, solved it by creating a copy of the result |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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?
All reactions