if I upsert a document (e.g. `POST /collections/co...
# community-help
t
if I upsert a document (e.g.
POST /collections/companies/documents?action=upsert
from the docs) and then delete the document (e.g.
DELETE /collections/companies/documents/124
from the docs) why would it still show up as a search result? (e.g.
GET /collections/companies/documents/search?q=stark&query_by=company_name
from the docs) in fact, I get a 404 Not Found if I try to retrieve the document (e.g.
GET /collections/companies/documents/124
from the docs) also, if I re-issue the DELETE request, it throws a 404 Not Found presumably the document is gone, but its still returned from the search results