Retrieves a record from the App's persistent storage by the provided id. A "falsey" value (undefined or null or false) is returned should nothing exist in the storage by the provided id.
the record to get's id
the record if it exists, falsey if not
Retrieves a record from the App's persistent storage by the provided id. An empty array is returned should there be no records associated with the data provided.
the association record to query the persistent storage for
array of the records if any exists, empty array if none exist
Retrieves a record from the App's persistent storage by the provided id. Providing more than one association record acts like an AND which means a record in persistent storage must have all of the associations to be considered a match. An empty array is returned should there be no records associated with the data provided.
the association records to query the persistent storage for
array of the records if any exists, empty array if none exist
Generated using TypeDoc
Provides a read-only accessor for the App's persistent storage. A App only has access to its own persistent storage and does not have access to any other App's.