aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source/API/FIRQuery+Internal.h
diff options
context:
space:
mode:
authorGravatar Michael Lehenbauer <mikelehen@gmail.com>2018-05-16 17:05:33 -0700
committerGravatar GitHub <noreply@github.com>2018-05-16 17:05:33 -0700
commit0ec836f9ca71b27fa54a11ae9e07e60b8c5cc002 (patch)
treeb677f04b8659299146b661dded71e4860fe956f0 /Firestore/Source/API/FIRQuery+Internal.h
parentdd83f4e30bed1b5caf5cc862e74743c84ca6e450 (diff)
b/79432277: Limit Queries to only a single array-contains clause. (#1286)
Diffstat (limited to 'Firestore/Source/API/FIRQuery+Internal.h')
-rw-r--r--Firestore/Source/API/FIRQuery+Internal.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Firestore/Source/API/FIRQuery+Internal.h b/Firestore/Source/API/FIRQuery+Internal.h
index c4f9f23..e207837 100644
--- a/Firestore/Source/API/FIRQuery+Internal.h
+++ b/Firestore/Source/API/FIRQuery+Internal.h
@@ -35,6 +35,8 @@ NS_ASSUME_NONNULL_BEGIN
* Creates and returns a new `FIRQuery` with the additional filter that documents must contain
* the specified field, it must be an array, and the array must contain the provided value.
*
+ * A query can have only one arrayContains filter.
+ *
* @param field The name of the field containing an array to search
* @param value The value that must be contained in the array
*
@@ -49,6 +51,8 @@ NS_ASSUME_NONNULL_BEGIN
* Creates and returns a new `FIRQuery` with the additional filter that documents must contain
* the specified field, it must be an array, and the array must contain the provided value.
*
+ * A query can have only one arrayContains filter.
+ *
* @param path The path of the field containing an array to search
* @param value The value that must be contained in the array
*