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
@@ -38,7 +38,7 @@ The Fulfillment Module has the following links to other modules:
[Fulfillment](/references/fulfillment/models/Fulfillment)
</Table.Cell>
<Table.Cell>
Stored
Stored - one-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#order-module)
@@ -52,7 +52,7 @@ The Fulfillment Module has the following links to other modules:
[Fulfillment](/references/fulfillment/models/Fulfillment)
</Table.Cell>
<Table.Cell>
Stored
Stored - one-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#order-module)
@@ -66,7 +66,7 @@ The Fulfillment Module has the following links to other modules:
[ShippingOption](/references/fulfillment/models/ShippingOption)
</Table.Cell>
<Table.Cell>
Stored
Stored - many-to-one
</Table.Cell>
<Table.Cell>
[Learn more](#pricing-module)
@@ -80,7 +80,7 @@ The Fulfillment Module has the following links to other modules:
[ShippingProfile](/references/fulfillment/models/ShippingProfile)
</Table.Cell>
<Table.Cell>
Stored
Stored - many-to-one
</Table.Cell>
<Table.Cell>
[Learn more](#product-module)
@@ -94,7 +94,7 @@ The Fulfillment Module has the following links to other modules:
[FulfillmentProvider](/references/fulfillment/models/FulfillmentProvider)
</Table.Cell>
<Table.Cell>
Stored
Stored - one-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#stock-location-module)
@@ -108,7 +108,7 @@ The Fulfillment Module has the following links to other modules:
[FulfillmentSet](/references/fulfillment/models/FulfillmentSet)
</Table.Cell>
<Table.Cell>
Stored
Stored - one-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#stock-location-module)
@@ -241,11 +241,11 @@ To retrieve the price set of a shipping option with [Query](!docs!/learn/fundame
const { data: shippingOptions } = await query.graph({
entity: "shipping_option",
fields: [
"price_set.*",
"price_set_link.*",
],
})
// shippingOptions.price_set
// shippingOptions[0].price_set_link?.price_set_id
```
</CodeTab>
@@ -259,11 +259,11 @@ import { useQueryGraphStep } from "@medusajs/medusa/core-flows"
const { data: shippingOptions } = useQueryGraphStep({
entity: "shipping_option",
fields: [
"price_set.*",
"price_set_link.*",
],
})
// shippingOptions.price_set
// shippingOptions[0].price_set_link?.price_set_id
```
</CodeTab>
@@ -340,7 +340,7 @@ const { data: shippingProfiles } = await query.graph({
],
})
// shippingProfiles.products
// shippingProfiles[0].products
```
</CodeTab>
@@ -358,7 +358,7 @@ const { data: shippingProfiles } = useQueryGraphStep({
],
})
// shippingProfiles.products
// shippingProfiles[0].products
```
</CodeTab>
@@ -443,7 +443,7 @@ const { data: fulfillmentSets } = await query.graph({
],
})
// fulfillmentSets.location
// fulfillmentSets[0].location
```
</CodeTab>
@@ -461,7 +461,7 @@ const { data: fulfillmentSets } = useQueryGraphStep({
],
})
// fulfillmentSets.location
// fulfillmentSets[0].location
```
</CodeTab>