Skip to content

Update the query protos. #3880

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion firebase-firestore/src/proto/google/firestore/v1/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,11 @@ message StructuredQuery {
// Unspecified. This value must not be used.
OPERATOR_UNSPECIFIED = 0;

// The results are required to satisfy each of the combined filters.
// Documents are required to satisfy all of the combined filters.
AND = 1;

// Documents are required to satisfy at least one of the combined filters.
OR = 2;
}

// The operator for combining multiple filters.
Expand Down