DaffSearchDriverOptions
The options for making a search.
import { DaffSearchDriverOptions } from '@daffodil/search/driver'
interface DaffSearchDriverOptions {
limit: number
}
Properties
Name | Type | Description |
---|---|---|
limit | number | The number of results to request from the platform. There is an important caveat for this option. This value only controls the requested number of results from the platform per request. For drivers that might make multiple requests in the background, e.g. the federated driver, this value will not match the actual number of results returned. This should be used as a performance option rather than controlling the result list size. |