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
[Promotion](/references/promotion/models/Promotion)
</Table.Cell>
<Table.Cell>
Stored
Stored - many-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#cart-module)
@@ -58,7 +58,7 @@ Read-only links are used to query data across modules, but the relations aren't
[Promotion](/references/promotion/models/Promotion)
</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
[Promotion](/references/promotion/models/Promotion)
</Table.Cell>
<Table.Cell>
Stored
Stored - many-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#order-module)
@@ -112,7 +112,7 @@ const { data: promotions } = await query.graph({
],
})
// promotions.carts
// promotions[0].carts
```
</CodeTab>
@@ -130,7 +130,7 @@ const { data: promotions } = useQueryGraphStep({
],
})
// promotions.carts
// promotions[0].carts
```
</CodeTab>
@@ -203,7 +203,7 @@ const { data: promotions } = await query.graph({
],
})
// promotions.orders
// promotions[0].orders
```
</CodeTab>
@@ -221,7 +221,7 @@ const { data: promotions } = useQueryGraphStep({
],
})
// promotions.orders
// promotions[0].orders
```
</CodeTab>