How to Extend an Entity
In this document, you’ll learn how to extend a core entity in Medusa.
Overview
Medusa uses entities to represent tables in the database. As you build your custom commerce application, you’ll often need to add your own properties to those entities. This guide explains the necessary steps to extend core Medusa entities.
This guide will use the Product entity as an example to demonstrate the steps.
Word of Caution about Overriding
Extending entities to add new attributes or methods shouldn't cause any issues within your commerce application. However, if you extend them to override their existing methods or attributes, you should be aware that this could have negative implications, such as unanticipated bugs, especially when you try to upgrade the core Medusa package to a newer version.
Step 1: Create Entity File
In your Medusa backend, create the file src/models/product.ts
. This file will hold your extended entity.
Note that the name of the file must be the same as the name of the original entity in the core package. Since in this guide you’re overriding the Product entity, it’s named product
to match the core. If you’re extending the customer entity, for example, the file should be named customer.ts
.
Step 2: Implement Extended Entity
In the file you created, you can import the entity you’re extending from the core package, then create a class that extends that entity. You can add in that class the new attributes and methods.
Here’s an example of extending the Product entity:
(Optional) Step 3: Create a TypeScript Declaration File
If you’re using JavaScript instead of TypeScript in your implementation, you can skip this step.
To ensure that TypeScript is aware of your extended entity and affects the typing of the Medusa package itself, create the file src/index.d.ts
with the following content:
Notice that you must pass the attributes you added to the entity into the interface
. The attributes will be merged with the attributes defined in the core Product
entity.
If TypeScript still doesn't pick up the custom attributes after adding src/index.d.ts
, try moving the file to a nested directory in src
. Please note that this only ensures TypeScript picks up the new attributes, but it doesn't actually reflect the new attributes in the database. That is handled by migrations.
Step 4: Create Migration
To reflect your entity changes on the database schema, you must create a migration with those changes.
You can learn how to create or generate a migration in this documentation.
Here’s an example of a migration of the entity extended in this guide:
import { MigrationInterface, QueryRunner } from "typeorm"
class changeProduct1680013376180 implements MigrationInterface {
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
"ALTER TABLE \"product\"" +
" ADD COLUMN \"customAttribute\" text"
)
}
public async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
"ALTER TABLE \"product\" DROP COLUMN \"customAttribute\""
)
}
}
export default changeProduct1680013376180
Step 5: Use Custom Entity
For changes to take effect, you must transpile your code by running the build
command in the root of the Medusa backend:
Then, run the following command to migrate your changes to the database:
You should see that your migration was executed, which means your changes were reflected in the database schema.
You can now use your extended entity throughout your commerce application.
Access Custom Attributes and Relations in Core API Routes
Request Parameters
In most cases, after you extend an entity to add new attributes, you'll likely need to pass these attributes to API Routes defined in the core. By default, this causes an error, as request parameters are validated to ensure only those that are defined are passed to the API Route.
To allow passing your custom attribute, you'll need to extend the validator of the API Route.
Response Fields
After you add custom attributes, you'll notice that these attributes aren't returned as part of the response fields of core API Routes. Core API Routes have a defined set of fields and relations that can be returned by default in requests.
To change that and ensure your custom attribute is returned in your request, you can extend the allowed fields of a set of API Routes in a loader file and add your attribute into them.
For example, if you added a custom attribute in the Product
entity and you want to ensure it's returned in all the product's store API Routes (API Routes under the prefix /store/products
), you can create a file under the src/loaders
directory in your Medusa backend with the following content:
export default async function () {
const imports = (await import(
"@medusajs/medusa/dist/api/routes/store/products/index"
)) as any
imports.allowedStoreProductsFields = [
...imports.allowedStoreProductsFields,
"customAttribute",
]
imports.defaultStoreProductsFields = [
...imports.defaultStoreProductsFields,
"customAttribute",
]
}
In the code snippet above, you import @medusajs/medusa/dist/api/routes/store/products/index
, which is where all the product's store API Routes are exported. In that file, there are the following defined variables:
allowedStoreProductsFields
: The fields or attributes of a product that are allowed to be retrieved and returned in the product's store API Routes. This would allow you to pass your custom attribute in thefields
request parameter of the product's store API Routes.defaultStoreProductsFields
: The fields or attributes of a product that are retrieved and returned by default in the product's store API Routes.
You change the values of these variables and pass the name of your custom attribute. Make sure to change customAttribute
to the name of your custom attribute.
Before you test out the above change, make sure to build your changes before you start the Medusa backend.
You can also add custom relations by changing the following defined variables:
allowedStoreProductsRelations
: The relations of a product that are allowed to be retrieved and returned in the product's store API Routes. This would allow you to pass your custom relation in theexpand
request parameter of the product's store API Routes.defaultStoreProductsRelations
: The relations of a product that are retrieved and returned by default in the product's store API Routes.
If you want to apply this example for a different entity or set of API Routes, you would need to change the import path @medusajs/medusa/dist/api/routes/store/products/index
to the path of the API Routes you're targeting. You also need to change allowedStoreProductsFields
and defaultStoreProductsFields
to the names of the variables in that file, and the same goes for relations. Typically, these names would be of the format (allowed|default)(Store|Admin)(Entity)(Fields|Relation)
.
Advanced Entity Definitions
With entities, you can create relationships, index keys, and more. As Medusa uses Typeorm, you can learn about using these functionalities through Typeorm's documentation.