medusa-plugin-ratings
Simple reviews and ratings for Medusajs
If you are not familiar with Medusa, you can learn more on the project web site.
Medusa is a set of commerce modules and tools that allow you to build rich, reliable, and performant commerce applications without reinventing core commerce logic. The modules can be customized and used to build advanced ecommerce stores, marketplaces, or any product that needs foundational commerce primitives. All modules are open-source and freely available on npm.
Features
- Adds review object and data repository
- Adds endpoints for retrieving reviews by product and by customer
- Adds endpoint for adding a review
- By default, reviews are set with field
approved
tofalse
(boolean) - Until Medusa adds extensibility for the admin app, approval must be done manually in the database.
Installation
yarn add medusa-plugin-blog
Configuration
Enable in your medusa-config.js file similar to other plugins:
const plugins = [
`medusa-plugin-ratings`,
...
]
API Endpoints
GET /store/products/:id/reviews
returns a json object with an array of reviews for the product with the given id
GET /store/customers/:id/reviews
returns a json object with an array of reviews for the customer with the given id
GET /store/reviews/:id
returns a json object with the review with the given id
POST /store/products/:id/reviews
adds a review for the product with the given id. The body of the request should be a json object with the following fields:
{
customer_id: string!,
display_name: string!,
content: string!,
rating: number.min(0).max(5)!
}