Hello Community!
Are dots allowed in event type name when using in projections?
This projection is not working for me - I wonder if it’s because of the dots?
(projection is enabled, emit is enabled, and events with this name are in test-stream)
fromStream('test-stream')
.when({
"Event.Type.With.Dots.In.Name": function(state, event){
linkTo('new-stream', event);
}
})
Thank you for help.