QueryOperation
public enum QueryOperation
Property-value query operations used for matching patterns on either sys
or fields
properties of Assets and Entrys.
Each operation specifies a property name on the left-hand side, with a value to match on the right.
For instance, using the doesNotEqual operation in an a concrete Query like:
Query(where:"fields.name", .doesNotEqual("Happy Cat"))
would append the following to the http URL:
"fields.name[ne]=Happy%20Cat"
Refer to the documentation for the various Query classes for more information.
-
Undocumented
Declaration
Swift
public enum QueryOperation
-
Undocumented
Declaration
Swift
public enum QueryOperation
-
Undocumented
Declaration
Swift
public enum QueryOperation
-
Undocumented
Declaration
Swift
public enum QueryOperation
-
Undocumented
Declaration
Swift
public enum QueryOperation
-
Undocumented
Declaration
Swift
public enum QueryOperation
-
Full text search on a field.
Declaration
Swift
case matches(String)
-
MARK: Ranges
Declaration
Swift
case isLessThan(QueryableRange)
-
Undocumented
Declaration
Swift
public enum QueryOperation
-
Undocumented
Declaration
Swift
public enum QueryOperation
-
Undocumented
Declaration
Swift
public enum QueryOperation
-
Proximity searches.
Declaration
Swift
case isNear(CLLocationCoordinate2D)
-
Undocumented
Declaration
Swift
public enum QueryOperation
View on GitHub
QueryOperation Enum Reference