david-moonsift

Results 1 issues of david-moonsift

Following the documentation here: https://weaviate.io/developers/weaviate/manage-data/delete I have implemented a deletion setup as follows: ``` collection = client.collections.get(collection_name) end_date = datetime.strptime("2024-04-09T20:16:10Z", "%Y-%m-%dT%H:%M:%SZ") where_clause = Filter.by_property("scrape_date").less_or_equal(end_date) collection.data.delete_many( where=where_clause, ) ``` Running small...