I have a saga containing a timeout that will trigger a business process in the future. This saga can be ended early either based on a "cancelled"-event from a core system or manually by a customer handler. The customer handler needs to be able to query the planned processes on some key values and manually cancel the timeout (e.g. end the saga).
The system will consist of the described saga and a web application with search functionality which will list planned processes and the possibility to issue "cancel"-commands to the sagas.
The question is then how to list the planned business transactions (this information is stored as saga data)? The most naive solution would be to access the saga data directly, which probably isn't a good idea since this is internal data to the saga and the storage can be changed etc.