Hi all,
I’m experimenting a bit with native projections on 3.5.0 and wanted to try out “fromStreamsMatching” with the following small example:
fromStreamsMatching(function(s, streamMeta){
return s.indexOf("Sales_") === 0;
})
.whenAny(function (s, e) {
linkTo('Sales', e);
});
However when I run this I get the error “catalogStream is not supported in the projections mode” when trying to start this. Am I missing something here? Also (not sure if this is relevant) all my system projections are running.