FilteringDeletionStorage

Storage interface that provides the ability to delete documents by filter expression.

Functions

Link copied to clipboard
abstract suspend fun delete(ids: List<String>, namespace: String? = null): List<String>

Deletes documents with the specified identifiers from the storage.

abstract suspend fun delete(filterExpression: String, namespace: String? = null): List<String>

Deletes documents by filter expression from the storage.