ngrx-entity-relationship icon indicating copy to clipboard operation
ngrx-entity-relationship copied to clipboard

populate ids automatically on graphql reduce

Open satanTime opened this issue 3 years ago • 0 comments

if the id field hasn't been set, then we should detect its values based on the related entity and populate its value.

So

parentId: null,
parent: {
  id: 123,
},

would become in the store

parentId: 123,

the same for sets.

satanTime avatar Aug 08 '21 23:08 satanTime