I’m trying to perform a search on an Article class object (each associated with an Author class via an Article → Author cross-reference).
I would like to do a hybrid search matching the Article class for the vector and bm25 on the author’s name. However I’m getting the following error:
Searching by property 'Author.name' requires inverted index. Is `indexSearchable` option of property 'Author.name' enabled
My understanding is that indexSearchable
defaults to true so is it possible that we can’t do a hybrid search on a cross-reference?