The entity for the query.
Create a collection query for an Entity.
T The entity to represent.
The collection to query.
The list of field for the collection.
The native firestore query.
Appends a query to the current query.
The query to append.
Creates a firestorm snapshot from the firestore snapshot.
The native query document snapshot.
Applies an end at filter to the query.
The field values to end this query at, in order of the query's order by.
Applies an end before filter to the query.
The field values to end this query before, in order of the query's order by.
Applies a limit filter to the query.
The maximum number of documents to return.
Attaches a listener to the query.
Callback which is called when new snapshot is available.
Callback which is called when an error occurs.
An unsubscribe function.
Applies an order by filter to the query.
The property to order by.
The order direction. Default value is ascending.
Applies a start after filter to the query.
The field values to start this query after, in order of the query's order by.
Applies a start at filter to the query.
The field values to start this query at, in order of the query's order by.
Applies a where filter to the query.
The property to query.
The operation to apply.
The value to test for.
Generated using TypeDoc
Firestorm representation of a query. Queries can be chained together, as per the standard firestore SDK.