Description
use the following code to request:
filters=wvc.query.Filter.by_property('knowledge_name').equal('QA')
collection=client.collection.get(Flies)
collection.query.fetch_object(filters=filters,limit=1)
Returns: QueryReturn(object=)
collection.query.fetch_object(filters=filters,limit=2)
Returns: one data.
My expectation is that when limit=1, one data should also be returned
Server Setup Information
- Weaviate Server Version: weaviate1.23.7
- Deployment Method: docker
- Multi Node? Number of Running Nodes: 3
- Client Language and Version:4.4.1
- Multitenancy:no
Any additional Information
I checked the server logs and found no relevant logs.
I think the problem is on the server side, because when I use the crul request, when limit=1, the feedback result is still empty