--- products: - payment - cart - order --- import { CodeTabs, CodeTab, Table } from "docs-ui" export const metadata = { title: `Links between Customer Module and Other Modules`, } # {metadata.title} This document showcases the module links defined between the Customer Module and other Commerce Modules. ## Summary The Customer Module has the following links to other modules: Read-only links are used to query data across modules, but the relations aren't stored in a pivot table in the database. First Data Model Second Data Model Type Description [Customer](/references/customer/models/Customer) [AccountHolder](/references/payment/models/AccountHolder) in [Payment Module](../../payment/page.mdx) Stored - many-to-many [Learn more](#payment-module) [Cart](/references/cart/models/Cart) in [Cart Module](../../cart/page.mdx) [Customer](/references/customer/models/Customer) Read-only - has one [Learn more](#cart-module) [Order](/references/order/models/Order) in [Order Module](../../order/page.mdx) [Customer](/references/customer/models/Customer) Read-only - has one [Learn more](#order-module)
--- ## Payment Module 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`. ### Retrieve with Query To retrieve the account holder associated with a customer with [Query](!docs!/learn/fundamentals/module-links/query), pass `customer.*` in `fields`: ```ts const { data: customers } = await query.graph({ entity: "customer", fields: [ "account_holder_link.account_holder.*", ], }) // customers[0].account_holder_link?.[0]?.account_holder ``` ```ts 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 ``` ### Manage with Link To manage the account holders of a customer, use [Link](!docs!/learn/fundamentals/module-links/link): ```ts import { Modules } from "@medusajs/framework/utils" // ... await link.create({ [Modules.CUSTOMER]: { customer_id: "cus_123", }, [Modules.PAYMENT]: { account_holder_id: "acchld_123", }, }) ``` ```ts import { createRemoteLinkStep } from "@medusajs/medusa/core-flows" // ... createRemoteLinkStep({ [Modules.CUSTOMER]: { customer_id: "cus_123", }, [Modules.PAYMENT]: { account_holder_id: "acchld_123", }, }) ``` --- ## Cart Module Medusa defines a read-only link between the [Cart Module](../../cart/page.mdx)'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. ### Retrieve with Query To retrieve the customer of a cart with [Query](!docs!/learn/fundamentals/module-links/query), pass `customer.*` in `fields`: ```ts const { data: carts } = await query.graph({ entity: "cart", fields: [ "customer.*", ], }) // carts.customer ``` ```ts import { useQueryGraphStep } from "@medusajs/medusa/core-flows" // ... const { data: carts } = useQueryGraphStep({ entity: "cart", fields: [ "customer.*", ], }) // carts.customer ``` --- ## Order Module Medusa defines a read-only link between the [Order Module](../../order/page.mdx)'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. ### Retrieve with Query To retrieve the customer of an order with [Query](!docs!/learn/fundamentals/module-links/query), pass `customer.*` in `fields`: ```ts const { data: orders } = await query.graph({ entity: "order", fields: [ "customer.*", ], }) // orders.customer ``` ```ts import { useQueryGraphStep } from "@medusajs/medusa/core-flows" // ... const { data: orders } = useQueryGraphStep({ entity: "order", fields: [ "customer.*", ], }) // orders.customer ```