IndexedDB.deleteObjectStoreEntriesDelete a range of entries from an object store
| Name | Type | Description |
|---|---|---|
securityOrigin (optional) | string | At least and at most one of securityOrigin, storageKey, or storageBucket must be specified. Security origin. |
storageKey (optional) | string | Storage key. |
storageBucket (optional) | Storage.StorageBucket | Storage bucket. If not specified, it uses the default bucket. |
databaseName | string | |
objectStoreName | string | |
keyRange | KeyRange | Range of entry keys to delete |
{
"id": 1,
"method": "IndexedDB.deleteObjectStoreEntries",
"params": {
"databaseName": "databaseName-value",
"objectStoreName": "objectStoreName-value",
"keyRange": "keyRange-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('IndexedDB.deleteObjectStoreEntries', {"databaseName": "databaseName-value", "objectStoreName": "objectStoreName-value", "keyRange": "keyRange-value"});
console.log(result);