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 63232fc commit 9d66b1fCopy full SHA for 9d66b1f
firebase-firestore/src/proto/google/firestore/v1/query.proto
@@ -1,4 +1,4 @@
1
-// Copyright 2018 Google LLC.
+// Copyright 2019 Google LLC.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
@@ -103,6 +103,14 @@ message StructuredQuery {
103
104
// Contains. Requires that the field is an array.
105
ARRAY_CONTAINS = 7;
106
+
107
+ // In. Requires that `value` is a non-empty ArrayValue with at most 10
108
+ // values.
109
+ IN = 8;
110
111
+ // Contains any. Requires that the field is an array and
112
+ // `value` is a non-empty ArrayValue with at most 10 values.
113
+ ARRAY_CONTAINS_ANY = 9;
114
}
115
116
// The field to filter by.
0 commit comments