John O'Reilly
01/18/2025, 12:11 PMflatMapMerge
along, for each element in list, combine
using flow returning queries for related data needed
2. query/observe list and just use map
and then make "single shot queries" for data needed for each element
Option 1 is more complicated of course but perhaps needed given nature of how we can potentially get multiple updates from queries (maybe from cache first and then network etc). Option 2 might work I guess if we knew data was in cache (or if we were say doing network only request). Anyway, just in case anyone has come across particular patterns for dealing with queries/data like thismbonnin
01/19/2025, 10:22 AMJohn O'Reilly
01/19/2025, 10:23 AM