We lately upgraded to GetEventStore 2.0.1 (from 1.0.1). No we face the problem that apparently the ad-hoc queries do not work any more, even very basic ones.
When we start the query it immediately stops with no error message. A sample would be
fromStream(‘domainLog’)
.when({
$init: function () {
return { count: 0 };
},
CageCreated:
function(s, e) {
s.count += 1;
return s;
},
});
in version 1.0.1 all our queries (even complex ones) worked just fine…
Are we missing something?