ExactOnSingleWordQuery
public enum ExactOnSingleWordQuery : String
Applicable values for the exactOnSingleWordQuery parameter.
-
No exact on single word query.
Warning
Beware of confusion withOptional.nonewhen using type inference!Declaration
Swift
case none = "none" -
Exact set to 1 if the query word is found in the record. The query word needs to have at least 3 chars and not be part of our stop words dictionary.
Declaration
Swift
case word = "word" -
(Default) Exact set to 1 if there is an attribute containing a string equals to the query.
Declaration
Swift
case attribute = "attribute"
ExactOnSingleWordQuery Enumeration Reference