Customise Hits via a Resolver# Add to the schema and extend the hit type. Below is an example of adding an additional field in Hit in the schema Copy extend type Hit {
exampleCustomField : String
}
see an example
Then provide a resolver for the field.
Copy resolvers : {
... SearchkitResolvers ( searchkitConfig )
Hit : {
exampleCustomField : ( parent ) => ` Example Returm Value for ${ parent . id } `
}
} ,
see an example
then with a GQL query like below
Copy query {
results() {
hits {
items {
id
exampleCustomField
}
}
}
}
will call the exampleCustomField resolver for each hit item. The parent object (passed as an argument) contains the HitFields values. The return value is what will be provided in the response.
Copy {
"data": {
"results": {
"hits": {
"items": [
{
"id": "tt0111161",
"exampleCustomField": "Example Return Value for tt0111161"
}
]
}
}
}
}
Custom UI for Facets# For each facet in the configuration, there is a field called display.
Copy new RefinementSelectFacet ( {
field : 'colour.raw' ,
id : 'colour' ,
label : 'Colour' ,
display : 'ColourPickerFacet'
} )
Display field is used to indicate what presentation should be for facet within the UI.
Copy {
results(query: "heat") {
facets {
id
label
type
display
entries {
id
label
count
}
}
}
}
If you're using @searchkit/elastic-ui, create a react component to be used for the facet
Copy import React from 'react'
import { EuiTitle } from '@elastic/eui'
import { useSearchkit } from '@searchkit/client'
export const ColourPickerFacet = ( { facet , loading } ) => {
const api = useSearchkit ( )
const entries = facet . entries . map ( ( entry ) => (
< li
style = { { backgroundColor : entry , border : api . isFilterSelected ( { id : facet . id , value : entry . label } ) ? '1px solid red' : none } }
onClick = { ( ) => {
api . toggleFilter ( { id : facet . id , value : entry . label } )
api . search ( )
} }
>
< / li >
) )
return (
< >
< EuiTitle size = "xxs" >
< h3 > { facet . label } < / h3 >
< / EuiTitle >
< ul > { entries } < / ul >
< / >
)
}
ColourPickerFacet . DISPLAY = 'ColourPickerFacet'
Then add the facet to FacetsList
Copy import { FacetsList } from "@searchkit/elastic-ui"
export default ( ) => {
const { data , loading } = useSearchkitQuery ( query )
const Facets = FacetsList ( [ ColourPickerFacet ] )
return (
...
< Facets data = { data ? . results } loading = { loading } / >
...
)
}
Facets component will render all the facets that come back, using the display field to map components with facet response.
Add Custom Facet# Create a Facet Class by implementing the BaseFacet interface.
Copy import { BaseFacet } from "@searchkit/apollo-resolvers"
export class CustomFacet implements BaseFacet {
excludeOwnFilters : false
constructor ( config ) {
this . config = config
}
getId ( ) {
return this . config . id
}
getLabel ( ) {
return this . config . label
}
getAggregation ( overrides : FacetOptions ) {
}
getFilters ( filters : Array < MixedFilter > ) {
}
transformResponse ( response ) {
return {
id : this . getId ( ) ,
label : this . getLabel ( ) ,
type : 'CustomFacet' ,
display : 'listFacet' ,
customField : "custom"
}
}
}
Then add a Facet type to the schema
Copy type CustomFacet implements FacetSet {
id: String
label: String
type: String
display: String
customField: String
}
then you should be able to query for facet
Copy query {
results {
facets {
... on CustomFacet {
id
label
type
display
customField
}
}
}
}