I am using Weaviate Hybrid query and I have nested properties in my schema. I want to pass it to the query_properties in hybrid query but it just gives error
weaviate.exceptions.WeaviateQueryError: Query call with protocol GRPC search failed with message object search at index collection_name: local shard object
search collection_name: Searching by property ‘abc.xyz’ requires inverted index. Is indexSearchable option of property
‘abc.xyz’ enabled? Set it to true or leave empty.
If you note in our docs, there are some limitations for objects datatype:
For instance:
Currently, object and object[] datatype properties are not indexed and not vectorized.
Future plans include the ability to index nested properties, for example to allow for filtering on nested properties and vectorization options.
Oh Thank You!! Just wanted to know if there is any other way to fetch object array datatype values in python. Surely it will help me a lot. Or is there any work around regarding that?