The name of the entity to create the object in.
The name of the key that the object will be stored under.
The data to store.
True if the data was successfully created, false otherwise.
Delete a single row or field from a database at entity[key].
The name of the entity to delete the object from.
The name of the key that the object is stored under.
The name of the key that the object is stored under.
True if the data was successfully deleted, false otherwise.
Delete an entire group under entity[key].
The name of the entity to delete.
The name of the key that the object is stored under.
True if the data was successfully deleted, false otherwise.
Read an object from a database at entity[key].
The name of the entity to read the object from.
The name of the key that the object is stored under.
The data stored at entity[key].
Search for an object in a database at entity[key] that matches the given criteria.
If the comparison is invalid.
The name of the entity to search the object in.
The name of the key that the object is stored under.
The value to search for.
The comparison to use when searching.
Whether or not the search should be case sensitive.
True if the object was found, false otherwise.
Update an object in a database at entity[key].
The name of the entity to update the object in.
The name of the key that the object is stored under.
The data to store.
True if the data was successfully updated, false otherwise.
Generated using TypeDoc
Create a new object in a database at entity[key].