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.none
when 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"