With SQLDelight is there an obvious way to update ...
# squarelibraries
s
With SQLDelight is there an obvious way to update a query result when a table not in the query changes? For instance, if you have a select on table_a that selects rows from table_b in the mapper to generate data like
TableA(id: String, children: List<TableB>)
One option is to have a useless subquery that depends on table B in the select on table A.