transaction.store.getAllKeys() - cieszynski/dberta.js GitHub Wiki
Syntax
TRANSACTION.STORE.getAllKeys([keyRange[, limit]])
Parameters
keyOrKeyRange
limit
Return value
A Promise that resolves to an Array
of the keys for all records matching the given query, up to the value of limit
, if limit
was supplied.
Description
This method conveniently wraps the getAllKeys()
method of the IDBObjectStore interface.
Exceptions
TransactionInactiveError
(from IDBObjectStore)
DataError
(from IDBObjectStore)
InvalidStateError
(from IDBObjectStore)