create creates a new model instance in the given store.
An array of model instances as JSON/JS objects.
delete deletes an existing model instance from the given store.
An array of instance ids to delete.
end completes (flushes) the transaction. All operations between start and end will be applied as a single transaction upon a call to end.
find queries the store for entities matching the given query parameters. See Query for options.
The object that describes the query. See Query for options. Alternatively, see QueryJSON for the basic interface.
findByID queries the store for the id of an instance.
The id of the instance to search for.
has checks whether a given instance exists in the given store.
An array of instance ids to check for.
save saves changes to an existing model instance in the given store.
An array of model instances as JSON/JS objects. Each model instance must have a valid existing ID
property.
start begins the transaction. All operations between start and end will be applied as a single transaction upon a call to end.
WriteTransaction performs a mutating bulk transaction on the underlying store.