Skip to content

Commit 0cc549c

Browse files
feat:Enable RunQueryResponse.done (#1712)
* feat:Enable RunQueryResponse.done PiperOrigin-RevId: 444879243 Source-Link: googleapis/googleapis@c4b98bf Source-Link: googleapis/googleapis-gen@497ddcd Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNDk3ZGRjZGVhZGNlZmYzNWIyODVjNmVhNDNmMzk5ZTcxZGMzMTNhZiJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent a9f2c51 commit 0cc549c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

dev/protos/google/firestore/v1/firestore.proto

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,15 @@ message RunQueryResponse {
523523
// The number of results that have been skipped due to an offset between
524524
// the last response and the current response.
525525
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+
}
526535
}
527536

528537
// The request for [Firestore.PartitionQuery][google.firestore.v1.Firestore.PartitionQuery].

0 commit comments

Comments
 (0)