I have three entities
evidence {claimId; string,
subject1Id: string,
subject2Id:string,
claim: Claim,
subject1: Subject,
subject2: Subject
}
claim {id, ...}
subject {id, ...}
I am processing a stream of each. Assuming claimId, subject1Id and subject2Id are populated AND that claim, subject1, and subject2 are not and I want to end up with a new collection:
evidence { claimId,
subject1Id,
subject2Id,
claim: <where claim.id == this.claimId>,
subject1: <where subject.id == this.subject1Id>,
subject2: <where subject.id == this.subject2Id>
}
I just can't seem to get my head around how to build the store pipe.
Suggestions or a pointer to examples much appreciated.
just combine your streams and unite in in a model that you want