Hi
I am first time using this package.
I am trying to get search results from multiple models.
 $this->results = Search::new()
          ->add(User::where('type', 'student'), ['name', 'email'])
          ->add(Question::class, ['id', 'text'])
          ->add(Chapter::class, ['name'])
          ->get($this->searchTerm);
But I am receiving following error.
LogicException
Queueing collections with multiple model types is not supported. 
Kindly let me know, where I am doing wrong.
Thanks