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