We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9f2c51 commit 0cc549cCopy full SHA for 0cc549c
dev/protos/google/firestore/v1/firestore.proto
@@ -523,6 +523,15 @@ message RunQueryResponse {
523
// The number of results that have been skipped due to an offset between
524
// the last response and the current response.
525
int32 skipped_results = 4;
526
+
527
+ // The continuation mode for the query. If present, it indicates the current
528
+ // query response stream has finished. This can be set with or without a
529
+ // `document` present, but when set, no more results are returned.
530
+ oneof continuation_selector {
531
+ // If present, Firestore has completely finished the request and no more
532
+ // documents will be returned.
533
+ bool done = 6;
534
+ }
535
}
536
537
// The request for [Firestore.PartitionQuery][google.firestore.v1.Firestore.PartitionQuery].
0 commit comments