-
Is your feature request related to a problem? Please describe. just because useResult returns a readonly result, meaning that you cant use those inside forms. Describe the solution you'd like Describe alternatives you've considered |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Apollo client returns immutable data.
|
Beta Was this translation helpful? Give feedback.
-
So how would you go for fetching forms fields for updating? What i'm doing right now is using the result and onResult to do basically the same thing, but onResult is for the first result, and result for when there is a cached result, so using those I |
Beta Was this translation helpful? Give feedback.
So how would you go for fetching forms fields for updating? What i'm doing right now is using the result and onResult to do basically the same thing, but onResult is for the first result, and result for when there is a cached result, so using those I
Object.assing(fields, result);