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
Currently for mutations like ADD_BOOK, or REMOVE_BOOK, there are no automatic updates - without some extra hints, the library cannot know which arrays to update and how.
It should be possible though with some extra hints.
The text was updated successfully, but these errors were encountered:
// remove objects from all arrays{id: 1,_remove: '*'}// append object to LIST_1{id: 1,_append: 'LIST_1'}// append object to LIST_1 and LIST_2{id: 1,_append: ['LIST_1','LIST_2']}// prepend object to LIST_1 and LIST_2{id: 1,_prepend: [LIST_1','LIST_2']}// move object from LIST_1 to LIST_2{id: 1,_remove: 'LIST_1',_append: 'LIST_2'}// replace object with id 1 with object with id 2[{id: 1,_remove: 'LIST_1'},{id: 2,_append: 'LIST_1'}]
Currently for mutations like
ADD_BOOK
, orREMOVE_BOOK
, there are no automatic updates - without some extra hints, the library cannot know which arrays to update and how.It should be possible though with some extra hints.
The text was updated successfully, but these errors were encountered: