Files
medusa-store/packages/medusa-plugin-algolia/README.md
Rolwin Reevan Monteiro 8ce9b20222 feat: Algolia plugin for medusa (#718)
Co-authored-by: Rolwin Monterio <rolwin@yellow.ai>
Co-authored-by: olivermrbl <oliver@mrbltech.com>
2021-11-12 14:10:00 +01:00

468 B

medusa-plugin-algolia

algolia Plugin for Medusa to search for products.

Plugin 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"],
    }
  }
}