getAll

fun getAll(queryOrOptions: IDBValidKey? = definedExternally, count: Int = definedExternally): IDBRequest<ReadonlyArray<*>>(source)

The getAll() method of the IDBObjectStore interface returns an IDBRequest object containing all objects in the object store matching the specified parameter or all objects in the store if no parameters are given.

MDN Reference


fun getAll(queryOrOptions: IDBKeyRange?, count: Int = definedExternally): IDBRequest<ReadonlyArray<*>>(source)