Is it possible to use multiple fields for searchkick's autocomplete feature? It seems to be searching only the first field specified.
For example, for a person with the first_name
"Foo" and last_name
"Bar"
Person.search("Fo", fields: [first_name: :text_start, last_name: :text_start])
- returns result
Person.search("Ba", fields: [first_name: :text_start, last_name: :text_start])
- no results found