I have a simple collection with 1700 items
I want to retrieve all of them
to do so, I am using the following code:
collection = client.collections.get('collection_name')
response = collection.query.fetch_objects()
all_items = [i.properties for i in response.objects]
print(len(all_items)) -> this prints 10
but if i do the following:
collection = client.collections.get('collection_name')
response = collection.query.fetch_objects(limit = 2000)
all_items = [i.properties for i in response.objects]
print(len(all_items)) -> this prints 1700
Is there a way to get all the items in a collection without having to specify the limit?