PartitionQueryRequest class
The request for Firestore.PartitionQuery.
Constructors
Properties
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- pageSize ↔ int
-
The maximum number of partitions to return in this call, subject to
partition_count
. For example, ifpartition_count
= 10 andpage_size
= 8, the first call to PartitionQuery will return up to 8 partitions and anext_page_token
if more results exist. A second call to PartitionQuery will return up to 2 partitions, to complete the total of 10 specified inpartition_count
.read / write - pageToken ↔ String
-
The
next_page_token
value returned from a previous call to PartitionQuery that may be used to get an additional set of results. There are no ordering guarantees between sets of results. Thus, using multiple sets of results will require merging the different result sets. For example, two subsequent calls using a page_token may return: * cursor B, cursor M, cursor Q * cursor A, cursor U, cursor W To obtain a complete result set ordered with respect to the results of the query supplied to PartitionQuery, the results sets should be merged: cursor A, cursor B, cursor M, cursor Q, cursor U, cursor Wread / write - partitionCount ↔ String
-
The desired maximum number of partition points. The partitions may be
returned across multiple pages of results. The number must be positive.
The actual number of partitions returned may be fewer. For example, this
may be set to one fewer than the number of parallel queries to be run, or
in running a data pipeline job, one fewer than the number of workers or
compute instances available.
read / write
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- structuredQuery ↔ StructuredQuery
-
A structured query. Query must specify collection with all descendants and
be ordered by name ascending. Other filters, order bys, limits, offsets,
and start/end cursors are not supported.
read / write
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toJson(
) → Map< String, Object> -
toString(
) → String -
Returns a string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited