Class: Google::Cloud::Firestore::V1::PartitionQueryResponse
- Inherits:
-
Object
- Object
- Google::Cloud::Firestore::V1::PartitionQueryResponse
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/firestore/v1/firestore.rb
Overview
The response for Firestore.PartitionQuery.
Instance Attribute Summary collapse
-
#next_page_token ⇒ ::String
A page token that may be used to request an additional set of results, up to the number specified by
partition_count
in the PartitionQuery request. -
#partitions ⇒ ::Array<::Google::Cloud::Firestore::V1::Cursor>
Partition results.
Instance Attribute Details
#next_page_token ⇒ ::String
Returns A page token that may be used to request an additional set of results, up
to the number specified by partition_count
in the PartitionQuery request.
If blank, there are no more results.
548 549 550 551 |
# File 'proto_docs/google/firestore/v1/firestore.rb', line 548 class PartitionQueryResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#partitions ⇒ ::Array<::Google::Cloud::Firestore::V1::Cursor>
Returns Partition results. Each partition is a split point that can be used by RunQuery as a starting or end point for the query results. The RunQuery requests must be made with the same query supplied to this PartitionQuery request. The partition cursors will be ordered according to same ordering as the results of the query supplied to PartitionQuery.
For example, if a PartitionQuery request returns partition cursors A and B, running the following three queries will return the entire result set of the original query:
- query, end_at A
- query, start_at A, end_at B
- query, start_at B
An empty result may indicate that the query has too few results to be partitioned.
548 549 550 551 |
# File 'proto_docs/google/firestore/v1/firestore.rb', line 548 class PartitionQueryResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |