Search code examples
azureazure-cosmosdbazure-cosmosdb-sqlapi

cosmos db best way to delete document


How can I delete item from cosmos Db document. I am trying below query but no luck.

delete from c where c.ode = '21423423'


Solution

  • The SQL API does not provide facilities for delete, this must be done through the REST API, Storage Explorer etc.

    In addition, I saw the official reply that the delete function is not yet supported.