When designing a state shape with related entities, the official Redux docs recommend referencing by ID rather than nesting: http://redux.js.org/docs/basics/Reducers.html#note-on-relationships.
In a one-to-many relationship, Normalizr will put the references in the "one" side of the relationship, e.g.:
"posts": {
"1": {
...
comments: ["1", "2", "3"]
...
Is this better than putting the reference in the "many" side? e.g.
"comments": {
"7": {
...
postId: "1"
...
Does it matter where I put the reference when creating a Redux store?