An array of objects.
A key-value object representing the query. Use "." for nested queries ({"parent.child": "value"}) and "!" for negation ({"!field": "value"}).
Returns an array of matched object.
This method retrieves the first object that matches the input query. It accepts nested queries.
It returns the original object.
In case no match is found, it returns null.
An array of objects.
A key-value object representing the query. Use "." for nested queries ({"parent.child": "value"}) and "!" for negation ({"!field": "value"})..
Returns the matched object.
This method returns a new object array composed of elements whose id numbers are found in a given list. In case no match is found, it returns an empty array.
An array of objects.
An array of the selected id numbers.
Returns an array of matched ids.
This method modifies the input array by deleting all elements in the positions given by list of indexes.
An array of objects.
array indexes to be deleted.
Returns undefined.
This method modifies the input array by deleting the element with given id.
An array of objects.
Unique string or number that identifies the object.
Returns undefined.
This method creates a shallow copy of the input array and remove the element of given id.
An array of objects.
Unique string or number that identifies the object.
Returns new array with element removed.
This method modifies the input array by deleting all elements that match the query.
An array of objects.
A key-value object representing the query. Use "." for nested queries ({"parent.child": "value"}) and "!" for negation ({"!field": "value"}).
Returns the array indexes of the removed object.
This method updates an element chosen by its id inside the input array. Each object must have an 'id' key. It returns 'true' if the update is successfull.
An array of objects.
Unique string or number that identifies the object.
a partial object containing the fields and values to be updated.
Returns an array of matched object.
This method returns the entity id number.
This method reduces a nested field (db relationship) to its id or array of ids.
Generated using TypeDoc
This method returns a new array composed of all elements that match the query. It accepts nested queries. In case no match is found, it returns an empty array.
getObject getObjectbyIds