docs: updates to link to other modules docs (#12225)

This commit is contained in:
Shahed Nasser
2025-04-18 09:28:39 +03:00
committed by GitHub
parent 6a9417a1bb
commit c8ec59e323
19 changed files with 16588 additions and 16588 deletions
@@ -44,7 +44,7 @@ Read-only links are used to query data across modules, but the relations aren't
[AccountHolder](/references/payment/models/AccountHolder) in [Payment Module](../../payment/page.mdx)
</Table.Cell>
<Table.Cell>
Stored
Stored - many-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#payment-module)
@@ -58,7 +58,7 @@ Read-only links are used to query data across modules, but the relations aren't
[Customer](/references/customer/models/Customer)
</Table.Cell>
<Table.Cell>
Read-only
Read-only - has one
</Table.Cell>
<Table.Cell>
[Learn more](#cart-module)
@@ -72,7 +72,7 @@ Read-only links are used to query data across modules, but the relations aren't
[Customer](/references/customer/models/Customer)
</Table.Cell>
<Table.Cell>
Read-only
Read-only - has one
</Table.Cell>
<Table.Cell>
[Learn more](#order-module)
@@ -105,11 +105,11 @@ To retrieve the account holder associated with a customer with [Query](!docs!/le
const { data: customers } = await query.graph({
entity: "customer",
fields: [
"account_holders.*",
"account_holder_link.account_holder.*",
],
})
// customers.account_holders
// customers[0].account_holder_link?.[0]?.account_holder
```
</CodeTab>
@@ -123,11 +123,11 @@ import { useQueryGraphStep } from "@medusajs/medusa/core-flows"
const { data: customers } = useQueryGraphStep({
entity: "customer",
fields: [
"account_holders.*",
"account_holder_link.account_holder.*",
],
})
// customers.account_holders
// customers[0].account_holder_link?.[0]?.account_holder
```
</CodeTab>