Lets say I have a table whose columns are symbol, name, and last price. A sample row might be 'AMZN', 'Amazon', 1736.00. The symbol and name data originates from some api 'symbol-to-name-service' , while another api provides symbol and price info ('symbol-to-price-service') .
Symbols are universally unique. The symbol->name mapping is held in one slice of redux state, while the symbol -> price mapping is held in another slice.
To display a row, I need to join my price data with my name data on the symbol.
What is a good strategy for rendering relational data of this flavor, where data on one side of the relationship changes often.