How do you add/remove to a redux store generated with normalizr?
问题 Looking the examples from the README: Given the "bad" structure: [{ id: 1, title: 'Some Article', author: { id: 1, name: 'Dan' } }, { id: 2, title: 'Other Article', author: { id: 1, name: 'Dan' } }] It's extremely easy to add a new object. All I have to do is something like return { ...state, myNewObject } In the reducer. Now given the structure of the "good" tree, I have no idea how I should approach it. { result: [1, 2], entities: { articles: { 1: { id: 1, title: 'Some Article', author: 1 }