Hello,
I have troubles with resolving links for projections. It seems that ES-ResolveLinkTos header does not work.
Here is the case I have:
We have projections for every EventType we publish.
Then there is an event handler that subscribes to Different event types. We got an issue of receiving events in the wrong order when we’d subscribed just to several streams, so instead, we went with a different solution.
Now we create a Projection via the API that merges all necessary events into one stream while keeping the correct order, and then the event handler subscribes to its own stream.
The generated projection looks like this:
fromStreams(["$et-Events::JobAdTrashed", “$et-Events::JobAdLocaleChanged”])
``
But when we create a subscription to this stream, we don’t see links resolved even though we pass the ES-ResolveLinkTos
header.
I still get events that have EventType: $>
Can anyone help me how to resolve it properly when using consume_feed
during the continuous subscription?
Thanks in advance