wasyl
06/05/2023, 4:45 PMquery foo { getList(ids = [a, b, c]) {...} }
and get some response. However, that response does not contain c
in the list at all. Then, I make a mutation bar
where in the response I also fetch getList(ids = [a, b, c])
. This time the response contains all 3 items.
Should I expect the foo
query watcher to re-emit with the entire list as returned by bar
? Feels like yes, but my tests fail and I'm wondering if I should spend some time on a repro or this is not expected to work 🤔wasyl
06/05/2023, 5:02 PMwasyl
06/05/2023, 5:02 PM