manyToMany Relationship Method - API Reference

This method defines a relationship between two data models, where both data models have many related records.

For example, an order is associated with many products, and a product is associated with many orders.

Example#

Code
1import { model } from "@medusajs/framework/utils"2
3const Order = model.define("order", {4  id: model.id(),5  products: model.manyToMany(() => Product),6})7
8const Product = model.define("product", {9  id: model.id(),10  order: model.manyToMany(() => Order),11})

Type Parameters#

TobjectOptional
The type of the entity builder passed as a first parameter. By default, it's a function returning the related model.

Parameters#

entityBuilderT
A function that returns the data model this model is related to.
optionsManyToManyOptionsOptional
The relationship's options.
Was this page helpful?