MultipleQueriesStrategy
public enum MultipleQueriesStrategy : String
Strategy when running multiple queries. See Client.multipleQueries(...).
-
Execute the sequence of queries until the end.
Warning
Beware of confusion withOptional.nonewhen using type inference!Declaration
Swift
case none = "none" -
Execute the sequence of queries until the number of hits is reached by the sum of hits.
Declaration
Swift
case stopIfEnoughMatches = "stopIfEnoughMatches"
MultipleQueriesStrategy Enumeration Reference