dave08
12/08/2022, 12:43 PMandThen
only run the next query if the first one succeeds? Would there be a place for an onError(query)
extension to Query?Toshihiro Nakamura
12/08/2022, 2:46 PMAlso, does andThen only run the next query if the first one succeeds?Yes.
Would there be a place for an onError(query) extension to Query?No. You can catch an exception and then issue next query.
dave08
12/08/2022, 2:54 PM