ISearchService
Properties
options
Record<string, unknown>RequiredMethods
createIndex
Used to create an index
Parameters
indexName
stringRequiredthe index name
options
unknownRequiredthe options
Returns
unknown
unknownRequiredreturns response from search engine provider
getIndex
Used to get an index
Parameters
indexName
stringRequiredthe index name.
Returns
unknown
unknownRequiredreturns response from search engine provider
addDocuments
Used to index documents by the search engine provider
Parameters
indexName
stringRequiredthe index name
documents
unknownRequireddocuments array to be indexed
type
stringRequiredof documents to be added (e.g: products, regions, orders, etc)
Returns
unknown
unknownRequiredreturns response from search engine provider
replaceDocuments
Used to replace documents
Parameters
indexName
stringRequiredthe index name.
documents
unknownRequiredarray of document objects that will replace existing documents
type
stringRequiredtype of documents to be replaced (e.g: products, regions, orders, etc)
Returns
unknown
unknownRequiredreturns response from search engine provider
deleteDocument
Used to delete document
Parameters
indexName
stringRequiredthe index name
document_id
string | numberRequiredthe id of the document
Returns
unknown
unknownRequiredreturns response from search engine provider
deleteAllDocuments
Used to delete all documents
Parameters
indexName
stringRequiredthe index name
Returns
unknown
unknownRequiredreturns response from search engine provider
search
Used to search for a document in an index
Parameters
indexName
stringRequiredthe index name
query
null | stringRequiredthe search query
options
unknownRequiredany options passed to the request object other than the query and indexName
- additionalOptions contain any provider specific options
Returns
unknown
unknownRequiredreturns response from search engine provider
updateSettings
Used to update the settings of an index
Parameters
indexName
stringRequiredthe index name
settings
unknownRequiredsettings object
Returns
unknown
unknownRequiredreturns response from search engine provider
Was this section helpful?