Socket
Socket
Sign inDemoInstall

@attraqt/search

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

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
884
increased by3.88%
Maintainers
1
Weekly downloads
 
Created
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);

Methods

MethodArgument(s)ResultDescription
initoptions: SearchInitOptionsvoidInitializes the search client
queryquery: string, options?: SearchOptions, requestOptions?: SearchRequestOptionsPromise<SearchResponse>Searches for items
suggestquery: string, options?: ProductSuggestOptions, requestOptions?: SearchRequestOptionsPromise<ProductSuggestResponse>Suggest and group a selection of items

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

FAQs

Package last updated on 20 Oct 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc