ngrx normalized state selector
问题 I'm rewriting a Ionic project to work with ngrx because it is growing a lot and I need to maintain a centralized state. I have implemented it with ngrx and using normalized states with the help of Normalizr. Now I have a doubt on how to pass to dumb component a populated object: Suppose I have two interfaces: interface Conversation { date: Date, lastMessage: string //this is the id of a message entity coming from normalizr } and interface Message { content: string } Now when I'm trying to get