How to delete by the property name which is stored in the weaviate client
Hi! You can delete objects based on filters:
For example:
client.batch.delete_objects(
class_name="EphemeralObject",
where={
"path": ["name"],
"operator": "Like",
"valueText": "EphemeralObject*"
},
)