Query<T> |
Query.limit(int limit) |
Set the query fetch limit.
|
Query<T> |
Query.pagingFrom(Map<String,String> pagingToken) |
Set the query paging continuation token.
|
Query<Map> |
Collection.query() |
Create a new collection query object with the Map value type.
|
<T> Query<T> |
Collection.query(Class<T> type) |
Create a new collection query object with the given value type.
|
Query<Map> |
DocumentRef.query(String name) |
Create a new sub collection query for this Document Ref.
|
<K> Query<K> |
DocumentRef.query(String name,
Class<K> type) |
Create a new sub collection query for this Document Ref, and with the given value type.
|
Query<T> |
Query.where(String operand,
String operator,
Boolean value) |
Add a where expression to the query.
|
Query<T> |
Query.where(String operand,
String operator,
Double value) |
Add a where expression to the query.
|
Query<T> |
Query.where(String operand,
String operator,
Integer value) |
Add a where expression to the query.
|
Query<T> |
Query.where(String operand,
String operator,
String value) |
Add a where expression to the query.
|