www/apps/resources/app/commerce-modules/customer/links-to-other-modules/page.mdx
import { CodeTabs, CodeTab, Table } from "docs-ui"
export const metadata = {
title: Links between Customer Module and Other Modules,
}
This document showcases the module links defined between the Customer Module and other Commerce Modules.
The Customer Module has the following links to other modules:
<Note title="Tip">Read-only links are used to query data across modules, but the relations aren't stored in a pivot table in the database.
</Note> <Table> <Table.Header> <Table.Row> <Table.HeaderCell> First Data Model </Table.HeaderCell> <Table.HeaderCell> Second Data Model </Table.HeaderCell> <Table.HeaderCell> Type </Table.HeaderCell> <Table.HeaderCell> Description </Table.HeaderCell> </Table.Row> </Table.Header> <Table.Body> <Table.Row> <Table.Cell> [Customer](/references/customer/models/Customer) </Table.Cell> <Table.Cell> [AccountHolder](/references/payment/models/AccountHolder) in [Payment Module](../../payment/page.mdx) </Table.Cell> <Table.Cell> Stored - many-to-many </Table.Cell> <Table.Cell> [Learn more](#payment-module) </Table.Cell> </Table.Row> <Table.Row> <Table.Cell> [Cart](/references/cart/models/Cart) in [Cart Module](../../cart/page.mdx) </Table.Cell> <Table.Cell> [Customer](/references/customer/models/Customer) </Table.Cell> <Table.Cell> Read-only - has one </Table.Cell> <Table.Cell> [Learn more](#cart-module) </Table.Cell> </Table.Row> <Table.Row> <Table.Cell> [Order](/references/order/models/Order) in [Order Module](../../order/page.mdx) </Table.Cell> <Table.Cell> [Customer](/references/customer/models/Customer) </Table.Cell> <Table.Cell> Read-only - has one </Table.Cell> <Table.Cell> [Learn more](#order-module) </Table.Cell> </Table.Row> </Table.Body> </Table>Medusa defines a link between the Customer and AccountHolder data models, allowing payment providers to save payment methods for a customer, if the payment provider supports it.
This link is available starting from Medusa v2.5.0.
To retrieve the account holder associated with a customer with Query, pass customer.* in fields:
const { data: customers } = await query.graph({
entity: "customer",
fields: [
"account_holder_link.account_holder.*",
],
})
// customers[0].account_holder_link?.[0]?.account_holder
import { useQueryGraphStep } from "@medusajs/medusa/core-flows"
// ...
const { data: customers } = useQueryGraphStep({
entity: "customer",
fields: [
"account_holder_link.account_holder.*",
],
})
// customers[0].account_holder_link?.[0]?.account_holder
To manage the account holders of a customer, use Link:
<CodeTabs group="relation-link"> <CodeTab label="link.create" value="method">import { Modules } from "@medusajs/framework/utils"
// ...
await link.create({
[Modules.CUSTOMER]: {
customer_id: "cus_123",
},
[Modules.PAYMENT]: {
account_holder_id: "acchld_123",
},
})
import { createRemoteLinkStep } from "@medusajs/medusa/core-flows"
// ...
createRemoteLinkStep({
[Modules.CUSTOMER]: {
customer_id: "cus_123",
},
[Modules.PAYMENT]: {
account_holder_id: "acchld_123",
},
})
A customer can have many account holders, but each account holder belongs to only one customer. If you try to link an account holder that already belongs to another customer, Medusa throws a Cannot create multiple links between 'customer' and 'payment' error. To transfer an account holder to a different customer, remove the existing link first, then create the new one.
Medusa defines a read-only link between the Cart Module's Cart data model and the Customer data model. Because the link is read-only from the Cart's side, you can only retrieve the customer of a cart, and not the other way around.
To retrieve the customer of a cart with Query, pass customer.* in fields:
const { data: carts } = await query.graph({
entity: "cart",
fields: [
"customer.*",
],
})
// carts.customer
import { useQueryGraphStep } from "@medusajs/medusa/core-flows"
// ...
const { data: carts } = useQueryGraphStep({
entity: "cart",
fields: [
"customer.*",
],
})
// carts.customer
Medusa defines a read-only link between the Order Module's Order data model and the Customer data model. Because the link is read-only from the Order's side, you can only retrieve the customer of an order, and not the other way around.
To retrieve the customer of an order with Query, pass customer.* in fields:
const { data: orders } = await query.graph({
entity: "order",
fields: [
"customer.*",
],
})
// orders.customer
import { useQueryGraphStep } from "@medusajs/medusa/core-flows"
// ...
const { data: orders } = useQueryGraphStep({
entity: "order",
fields: [
"customer.*",
],
})
// orders.customer