Search JS
Nosto stub
Usage
import { search } from "@nosto/search-js"
import { priceDecorator } from "@nosto/search-js/currencies"
import { thumbnailDecorator } from "@nosto/search-js/thumbnails"
const response = await search({
query: 'my search',
products: {
fields: [
"productId",
"name",
"price",
"listPrice",
"priceCurrencyCode",
"imageUrl",
"imageHash"
]
}
}, {
track: 'serp',
hitDecorators: [
priceDecorator(),
thumbnailDecorator({ size: "9" })
]
})
Last updated
Was this helpful?