Socket
Socket
Sign inDemoInstall

@attraqt/search

Package Overview
Dependencies
315
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @attraqt/search

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


Version published
Weekly downloads
937
decreased by-2.7%
Maintainers
1
Install size
20.7 MB
Created
Weekly downloads
 

Readme

Source

@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

FAQs

Last updated on 09 Nov 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc