algolia-combinatory-match
v1.0.2
Published
An Algolia tool to match and get known entities in your query.
Downloads
5
Readme
Algolia Combinatory Match
An Algolia tool to match and get known entities in your query
Installation
> npm install -S algolia-combinatory-match
OR> yarn add algolia-combinatory-match
Usage
import AlgoliaCombinatoryMatch from 'algolia-combinatory-match';
const algoliaCombinatoryMatch = new AlgoliaCombinatoryMatch(
'APP_ID',
'API_KEY',
[
{ name: 'indexName1', attribute: 'attributeName1' },
{ name: 'indexName2', attribute: 'attributeName2' },
]
);
async function main() {
const result = await algoliaCombinatoryMatch.run(
'find an american restaurant in manhattan'
);
}
The result
will be an object of this format:
{
results: [ [], [] ],
matches: [
{ hit: [Object], index: 'cuisines', matchedWords: 'american' },
{ hit: [Object], index: 'boroughs', matchedWords: 'manhattan' }
]
}
With
results
the search results ofindexName1
andindexName2
matches
the detect entities in the query