@Dani, currently, we don’t support filtering on reading events from multiple streams. You cannot use the regular Stream API as it’s designed and optimised to read from the specific stream.
We already had such an internal discussion about adding filtering for reading from the $all stream. However, it’s not as trivial as it may seem. Technically, ReadAllAsync is reading all events. Even if we add a filter there, then it may take quite some time to read all events from the beginning. What’s more, gRPC currently does not allow sending progress while reading. We may consider adding that in the future.