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
[InventoryItem](/references/inventory/models/InventoryItem)
</Table.Cell>
<Table.Cell>
Stored
Stored - many-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#product-module)
@@ -58,7 +58,7 @@ Read-only links are used to query data across modules, but the relations aren't
[StockLocation](/references/stock-location/models/StockLocation) in [Stock Location Module](../../stock-location/page.mdx)
</Table.Cell>
<Table.Cell>
Read-only
Read-only - has many
</Table.Cell>
<Table.Cell>
[Learn more](#stock-location-module)
@@ -98,7 +98,7 @@ const { data: inventoryItems } = await query.graph({
],
})
// inventoryItems.variants
// inventoryItems[0].variants
```
</CodeTab>
@@ -116,7 +116,7 @@ const { data: inventoryItems } = useQueryGraphStep({
],
})
// inventoryItems.variants
// inventoryItems[0].variants
```
</CodeTab>
@@ -187,7 +187,7 @@ const { data: inventoryLevels } = await query.graph({
],
})
// inventoryLevels.stock_locations
// inventoryLevels[0].stock_locations
```
</CodeTab>
@@ -205,7 +205,7 @@ const { data: inventoryLevels } = useQueryGraphStep({
],
})
// inventoryLevels.stock_locations
// inventoryLevels[0].stock_locations
```
</CodeTab>