I'm using App Search. Is it possible to search and join results across two engines?
For instance, let's consider 2 indices:
exam {
...
}
exam_completion {
exam_id: ...
user_id: ...
}
Use case: I want to run a search on the exam engine to find exams that have been completed by a given user. Does App Search provide a solution to perform the join?
If not, I would need to have a completion field in the exam collection, but I'm not fond of this solution because the array may contain thousands of elements.
Thanks!