Should emitted events appear in fromAll

I have a projection which calls emit and writes to a stream called $projections-SalesCompletedBuilder-result
I have another projection which works fromAll

We expected the emiited event to appear in this projection but it does not appear to.

Could the name of my stream be causing fromAll to not see these types of events?

Anyone?
I originally opted for $projections since this seemed to avoid writing the events out to $category etc

@steven.blair in Event Store streams that are prefixed with $ are treated as the systems streams. Could you try removing $ from your custom stream name prefix and check if that helps?

Oskar,

Thanks for the reply.
if change my stream name from:

$projections-SalesCompletedBuilder-result

to

projections-SalesCompletedBuilder-result

I could run the risk of event amplification (just making sure)

Perhaps something like:

projectionsSalesCompletedBuilderResult

What do you think?