I would like to delete records by query. The documentation does not mention this. I woudl like to do similar to:
where_filter = {
"path": ["hash"],
"operator": "Equal",
"valueText": hash,
}
return (
client.query
.get("Collection", ["question", "answer", 'file', 'hash'])
.with_where(where_filter)
.do()
)
but instead of querying I would like to delete the records.
Is it event possible in Weaviate. Could not find an answer in the internet.