Files
medusa-store/packages/medusa-plugin-algolia
Carlos R. L. Rodrigues eb8034502b chore: initial commit fix linting issues (#2169)
* chore: lint fixes
2022-09-21 12:19:03 -03:00
..
2022-08-25 15:51:21 +02:00
2022-05-20 11:40:57 +03:00

medusa-plugin-algolia

Algolia Plugin for Medusa to search for products.

Learn more about how you can use this plugin in the documentaion.

Options

{
  application_id: "someId",
  admin_api_key: "someApiKey",
  settings: {
    [indexName]: [algolia settings passed to algolia's `updateSettings()` method]
    // example
    products: {
      searchableAttributes: ["title", "description", "variant_sku", "type_value"],
      attributesToRetrieve: ["title", "description", "variant_sku", "type_value"],
    }
  }
}