How to migrate missing events to projection stream

Hi team:

We have a projection defined like this:

fromStreams(

** [**

** ‘$ce-xx’,**

** ‘$ce-yy’,**

** ‘$ce-zz’**

** ])**

** .when({**

** $any: function(s,e){**

** linkTo(’$ce-projection’, e);**

** }**

** })**

The projection had some problems some days ago, and now it worked fine, but we found the $ce-projection miss some events during a time span.

So, I need help to migrate the missing events from $ce-xx, $ce-yy, $ce-zz to $ce-projection. How do I do, is there a manual “linkTo” method to solve it?

Thank you.