@@ -42,66 +42,6 @@ NS_ASSUME_NONNULL_BEGIN
42
42
43
43
- (const api::Query &)apiQuery ;
44
44
45
- /* *
46
- * Creates and returns a new `FIRQuery` with the additional filter that documents must contain
47
- * the specified field, the value must be an array, and that array must contain at least one value
48
- * from the provided array.
49
- *
50
- * A query can have only one arrayContains filter and it cannot be combined with arrayContains or
51
- * in.
52
- *
53
- * @param field The name of the field containing an array to search.
54
- * @param value The value that contains the values to match.
55
- *
56
- * @return The created `FIRQuery`.
57
- */
58
- // TODO(b/138855186): Expose to public once backend is ready.
59
- - (FIRQuery *)queryWhereField : (NSString *)field arrayContainsAny : (NSArray <id> *)value ;
60
-
61
- /* *
62
- * Creates and returns a new `FIRQuery` with the additional filter that documents must contain
63
- * the specified field, the value must be an array, and that array must contain at least one value
64
- * from the provided array.
65
- *
66
- * A query can have only one arrayContains filter and it cannot be combined with arrayContains or
67
- * in.
68
- *
69
- * @param path The path of the field containing an array to search.
70
- * @param value The value that contains the values to match.
71
- *
72
- * @return The created `FIRQuery`.
73
- */
74
- // TODO(b/138855186): Expose to public once backend is ready.
75
- - (FIRQuery *)queryWhereFieldPath : (FIRFieldPath *)path arrayContainsAny : (NSArray <id> *)value ;
76
-
77
- /* *
78
- * Creates and returns a new `FIRQuery` with the additional filter that documents must contain
79
- * the specified field and the value must equal one of the values from the provided array.
80
- *
81
- * A query can have only one in filter, and it cannot be combined with arrayContainsAny.
82
- *
83
- * @param field The name of the field to search.
84
- * @param value The value that contains the values to match.
85
- *
86
- * @return The created `FIRQuery`.
87
- */
88
- // TODO(b/138855186): Expose to public once backend is ready.
89
- - (FIRQuery *)queryWhereField : (NSString *)field in : (NSArray <id> *)value ;
90
-
91
- /* *
92
- * Creates and returns a new `FIRQuery` with the additional filter that documents must contain
93
- * the specified field and the value must equal one of the values from the provided array.
94
- *
95
- * A query can have only one in filter, and it cannot be combined with arrayContainsAny.
96
- *
97
- * @param path The path of the field to search.
98
- * @param value The value that contains the values to match.
99
- *
100
- * @return The created `FIRQuery`.
101
- */
102
- // TODO(b/138855186): Expose to public once backend is ready.
103
- - (FIRQuery *)queryWhereFieldPath : (FIRFieldPath *)path in : (NSArray <id> *)value ;
104
-
105
45
@end
106
46
107
47
NS_ASSUME_NONNULL_END
0 commit comments