2.0.0 • Published 6 months ago

@attraqt/search v2.0.0

Weekly downloads
12
License
MIT
Repository
github
Last release
6 months ago

@attraqt/search

Use @attraqt/search to search through items using the XO platform.

Installation and Usage

npm install --save @attraqt/search
import { search } from '@attraqt/search';

search.init({
  token: 'SEARCH_API_TOKEN'
});

const searchResponse = await search.query('T-Shirt', {
  offset: 10,
  limit: 30,
  filter: 'price < 50'
});

console.log(searchResponse.items);
console.log(searchResponse.metadata);

const suggestResponse = await xo.search.suggest('T-Shirt', {
  filter: 'price < 50',
  groupBy: {
    attribute: 'kind',
    count: 10,
    values: ['product', 'shops', 'ads']
  }
});

console.log(suggestResponse.items);
console.log(suggestResponse.metadata);

const autocompleteResponse = await xo.search.autocomplete('T-Shirt', {
  numberOfSuggestions: 5
});

console.log(autocompleteResponse.suggestions);
console.log(autocompleteResponse.metadata);

Methods

MethodArgument(s)ResultDescription
initoptions: SearchInitOptionsvoidInitializes the search client
queryquery: string, options?: SearchItemOptions, requestOptions?: SearchRequestOptionsPromise<SearchResponse>Searches for items
suggestquery: string, options?: SearchGroupOptions, requestOptions?: SearchRequestOptionsPromise<SearchResponse>Suggest and group a selection of items
autocompletequery: string, options?: AutocompleteOptions, requestOptions?: SearchRequestOptionsPromise<AutocompleteResponse>Autocomplete a query, and get suggestions

Search Init Options

Properties to initialize the search component.

OptionTypeDescription
tokenstringRequired: Your unique token provided by Attraqt
region?RegionOptional: Region where you need to use the service. If an invalid or no region is selected then EU will be used.

Search options

All options are optional.

OptionTypeDescription
limitnumberPagination: Size of a page
offsetnumberPagination: Index of the first item to fetch
filterstringFilter query string
sortBySortOptions[]Sort options, evaluated in order of appearance
facetsFacetRequestOptions[]Facets filters to apply to the query
customResponseMaskstringCustom response mask. Allows to fetch only specific field from the catalog
disableDisableOptions[]Features to disable for this query

Suggest options

All options are optional.

OptionTypeDescription
filterstringFilter query string
sortBySortOptions[]Sort options, evaluated in order of appearance
customResponseMaskstringCustom response mask. Allows to fetch only specific field from the catalog
groupByGroupOptionsGroup result by an attribute and its specified values

Autocomplete options

All options are optional.

OptionTypeDescription
numberOfSuggestionsnumberNumber of suggestions to get. Default is 10

Regions

The following table lists the name and code of each Region.

Region nameCode
AustraliaAU
EuropeEU
United StatesUS
2.0.0

6 months ago

1.8.1

6 months ago

1.8.3

6 months ago

1.8.3-alpha.0

6 months ago

1.7.1

1 year ago

1.7.0

1 year ago

1.6.0

2 years ago

1.5.1

2 years ago

1.5.1-alpha.1

2 years ago

1.5.1-alpha.0

2 years ago

1.5.0

3 years ago

1.4.1

3 years ago

1.4.0

3 years ago

1.3.2

3 years ago

1.3.0

4 years ago

1.3.0-alpha.3

4 years ago