weaviate-python-client
weaviate-python-client copied to clipboard
Mismatch Between `update` Behavior and Docstring
client.data.update promises that the object will be created if it does not exist.
The docstring states the following:
"""
Update an object in the collection.
This is equivalent to a PATCH operation.
If the object does not exist yet, it will be created.
"""
Despite this, when I attempt to upsert an object, I receive the following error:
weaviate.exceptions.UnexpectedStatusCodeError: Object was not updated! Unexpected status code: 404, with response body: None.