Searchkit Apollo Resolvers
Query
MultiMatchQuery
Uses elasticsearch multi-match query.
Usage
GraphQL Query Example
Query will be applied to results & facets
Options
Option | Description |
---|---|
fields | fields to be queried. See elasticsearch documentation for more information on options |
Sorting
Within SearchkitConfig, declare all the available sorting options that you want your search to support, each with a unique id. Above is an example of how sorting option fields can be declared. Field is provided to elasticsearch so supports all the options that elasticsearch supports. See Elasticsearch sorting options for available options.
GraphQL Query Example
Once configured, you are able to:
- query available sort options via
sortOptions
within the summary node - sortedBy will tell you the current sort option for hits
then you will be able to specify how you want hits to be sorted by within the hits node using the id
Options
Option | Description |
---|---|
id | Unique id. Used to specify what to sort by |
label | label to be displayed in frontend |
Facets
Facets are configured together on the Searchkit Config within the facets array. Each facet can support a range of experiences from a simple list to date filtering
When configured, a GraphQL query using the facets node like below will bring back all the facet options for the result set. To apply a facet filter, you can specify the filter in the results arguments, shown below.
The resolver also supports returning facet options for one particular facet via facet node.
RefinementSelectFacet
Returns a list of facet options that can be applied to refine the result set.
Usage
Selected Filter Example
Multiple Select
Behaves like an OR filter. When configured and a filter is applied, facet will continue to return the same facet options as if the filter wasn't chosen. As more filters are applied, result matches will be of hits that have at least one of the filter values.
Facet Value Query
Supports facet values querying via the facet node. Great for UIs where you have a large list of options and require search
Options
Option | Description |
---|---|
field | Aggregation field to be used, preferably a field that is raw, not tokenized |
id | Required to be unique. Used to apply filters on field |
label | UI label for facet. Used by @searchkit/elastic-ui components |
MultipleSelect | Boolean. Default False. Filters operates as an OR. See multiple Select for more information |
size | Optional. Controls the number of options displayed. Defaults to 5. |
display | Optional. Used on UI to specify what component to handle facet |
RangeFilterFacet
Usage
Selected Filter Example
Options
Option | Description |
---|---|
field | Aggregation field to be used, preferably a field that is raw, not tokenized |
id | Required to be unique. Used to apply filters on field |
label | UI label for facet. Used by @searchkit/elastic-ui components |
range | Object of min, max and interval. Brings back entries between min and max. Number of entries depends on interval |
display | Optional. Used on UI to specify what component to handle facet |
DateRangeFacet
Usage
Selected Filter Example
Options
Option | Description |
---|---|
field | Aggregation field to be used, preferably a field that is raw, not tokenized |
id | Required to be unique. Used to apply filters on field |
label | UI label for facet. Used by @searchkit/elastic-ui components |
display | Optional. Used on UI to specify what component to handle facet |