ReadonlydirectionReturns the direction ("next", "nextunique", "prev" or "prevunique") of the cursor.
ReadonlykeyReturns the key of the cursor. Throws a "InvalidStateError" DOMException if the cursor is advancing or is finished.
ReadonlyprimaryReturns the effective key of the cursor. Throws a "InvalidStateError" DOMException if the cursor is advancing or is finished.
ReadonlyrequestReadonlysourceReturns the IDBObjectStore or IDBIndex the cursor was opened from.
ReadonlyvalueReturns the cursor's current value.
Advances the cursor through the next count records in range.
Advances the cursor to the next record in range matching or after key and primaryKey. Throws an "InvalidAccessError" DOMException if the source is not an index.
Delete the record pointed at by the cursor with a new value.
If successful, request's result will be undefined.
Updated the record pointed at by the cursor with a new value.
Throws a "DataError" DOMException if the effective object store uses in-line keys and the key would have changed.
If successful, request's result will be the record's key.
This IndexedDB API interface represents a cursor for traversing or iterating over multiple records in a database. It is the same as the IDBCursor, except that it includes the value property.
MDN Reference