@@ -834,7 +834,7 @@ public struct Query<T>: Encodable, Equatable where T: ParseObject {
834
834
Exclude specific keys for a `ParseObject`.
835
835
If this is called multiple times, then all of the keys specified in each of the calls will be excluded.
836
836
- parameter keys: A variadic list of keys include in the result.
837
- - warning: Requires Parse Server > 4. 5.0.
837
+ - warning: Requires Parse Server 5.0.0+ .
838
838
*/
839
839
public func exclude( _ keys: String ... ) -> Query < T > {
840
840
var mutableQuery = self
@@ -850,7 +850,7 @@ public struct Query<T>: Encodable, Equatable where T: ParseObject {
850
850
Exclude specific keys for a `ParseObject`.
851
851
If this is called multiple times, then all of the keys specified in each of the calls will be excluded.
852
852
- parameter keys: An array of keys to exclude in the result.
853
- - warning: Requires Parse Server > 4. 5.0.
853
+ - warning: Requires Parse Server 5.0.0+ .
854
854
*/
855
855
public func exclude( _ keys: [ String ] ) -> Query < T > {
856
856
var mutableQuery = self
@@ -866,7 +866,7 @@ public struct Query<T>: Encodable, Equatable where T: ParseObject {
866
866
Make the query restrict the fields of the returned `ParseObject`s to include only the provided keys.
867
867
If this is called multiple times, then all of the keys specified in each of the calls will be included.
868
868
- parameter keys: A variadic list of keys include in the result.
869
- - warning: Requires Parse Server > 4. 5.0.
869
+ - warning: Requires Parse Server 5.0.0+ .
870
870
*/
871
871
public func select( _ keys: String ... ) -> Query < T > {
872
872
var mutableQuery = self
@@ -882,7 +882,7 @@ public struct Query<T>: Encodable, Equatable where T: ParseObject {
882
882
Make the query restrict the fields of the returned `ParseObject`s to include only the provided keys.
883
883
If this is called multiple times, then all of the keys specified in each of the calls will be included.
884
884
- parameter keys: An array of keys to include in the result.
885
- - warning: Requires Parse Server > 4. 5.0.
885
+ - warning: Requires Parse Server 5.0.0+ .
886
886
*/
887
887
public func select( _ keys: [ String ] ) -> Query < T > {
888
888
var mutableQuery = self
0 commit comments