Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Sources/ParseSwift/API/API.swift
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public struct API {
/// - note: This is typically used indirectly by `ParseFile`.
case tags([String: String])
/// Add context.
/// - warning: Requires Parse Server > 4.5.0.
/// - warning: Requires Parse Server 5.0.0+.
case context(Encodable)
/// The caching policy to use for a specific http request. Determines when to
/// return a response from the cache. See Apple's
Expand Down
8 changes: 4 additions & 4 deletions Sources/ParseSwift/Types/Query.swift
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ public struct Query<T>: Encodable, Equatable where T: ParseObject {
Exclude specific keys for a `ParseObject`.
If this is called multiple times, then all of the keys specified in each of the calls will be excluded.
- parameter keys: A variadic list of keys include in the result.
- warning: Requires Parse Server > 4.5.0.
- warning: Requires Parse Server 5.0.0+.
*/
public func exclude(_ keys: String...) -> Query<T> {
var mutableQuery = self
Expand All @@ -850,7 +850,7 @@ public struct Query<T>: Encodable, Equatable where T: ParseObject {
Exclude specific keys for a `ParseObject`.
If this is called multiple times, then all of the keys specified in each of the calls will be excluded.
- parameter keys: An array of keys to exclude in the result.
- warning: Requires Parse Server > 4.5.0.
- warning: Requires Parse Server 5.0.0+.
*/
public func exclude(_ keys: [String]) -> Query<T> {
var mutableQuery = self
Expand All @@ -866,7 +866,7 @@ public struct Query<T>: Encodable, Equatable where T: ParseObject {
Make the query restrict the fields of the returned `ParseObject`s to include only the provided keys.
If this is called multiple times, then all of the keys specified in each of the calls will be included.
- parameter keys: A variadic list of keys include in the result.
- warning: Requires Parse Server > 4.5.0.
- warning: Requires Parse Server 5.0.0+.
*/
public func select(_ keys: String...) -> Query<T> {
var mutableQuery = self
Expand All @@ -882,7 +882,7 @@ public struct Query<T>: Encodable, Equatable where T: ParseObject {
Make the query restrict the fields of the returned `ParseObject`s to include only the provided keys.
If this is called multiple times, then all of the keys specified in each of the calls will be included.
- parameter keys: An array of keys to include in the result.
- warning: Requires Parse Server > 4.5.0.
- warning: Requires Parse Server 5.0.0+.
*/
public func select(_ keys: [String]) -> Query<T> {
var mutableQuery = self
Expand Down