3

I realize that one can use ReactiveBase to setup a connection to an index and then, use the components to query and return information from that index.

Is there a way to bind to multiple indices and search on a field across them or return results that are a 'merge' of fields from these multiple indices?

kewlking
  • 412
  • 1
  • 4
  • 11

2 Answers2

4

In order to query multiple indices ReactiveBase can accept comma separated values in the app prop. Example:

<ReactiveBase
  app="index1,index2"
  ...
>
  ...
</ReactiveBase>
Divyanshu Maithani
  • 13,908
  • 2
  • 36
  • 47
2

thanks to siddharthlatest, it is possible by providing multiple comma-separated indices - reference.

It has been reflected in the ReactiveBase documentation as well.

kewlking
  • 412
  • 1
  • 4
  • 11