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 Payment Module has the following links to other modules:
[PaymentCollection](/references/payment/models/PaymentCollection)
</Table.Cell>
<Table.Cell>
Stored
Stored - one-to-one
</Table.Cell>
<Table.Cell>
[Learn more](#cart-module)
@@ -52,7 +52,7 @@ The Payment Module has the following links to other modules:
[AccountHolder](/references/payment/models/AccountHolder)
</Table.Cell>
<Table.Cell>
Stored
Stored - many-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#customer-module)
@@ -66,7 +66,7 @@ The Payment Module has the following links to other modules:
[PaymentCollection](/references/payment/models/PaymentCollection)
</Table.Cell>
<Table.Cell>
Stored
Stored - one-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#order-module)
@@ -80,7 +80,7 @@ The Payment Module has the following links to other modules:
[PaymentCollection](/references/payment/models/PaymentCollection)
</Table.Cell>
<Table.Cell>
Stored
Stored - one-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#order-module)
@@ -94,7 +94,7 @@ The Payment Module has the following links to other modules:
[PaymentCollection](/references/payment/models/PaymentCollection)
</Table.Cell>
<Table.Cell>
Stored
Stored - one-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#order-module)
@@ -108,7 +108,7 @@ The Payment Module has the following links to other modules:
[PaymentProvider](/references/payment/models/PaymentProvider)
</Table.Cell>
<Table.Cell>
Stored
Stored - many-to-many
</Table.Cell>
<Table.Cell>
[Learn more](#region-module)
@@ -142,7 +142,7 @@ const { data: paymentCollections } = await query.graph({
],
})
// paymentCollections.cart
// paymentCollections[0].cart
```
</CodeTab>
@@ -160,7 +160,7 @@ const { data: paymentCollections } = useQueryGraphStep({
],
})
// paymentCollections.cart
// paymentCollections[0].cart
```
</CodeTab>
@@ -236,7 +236,7 @@ const { data: accountHolders } = await query.graph({
],
})
// accountHolders.customer
// accountHolders[0].customer
```
</CodeTab>
@@ -254,7 +254,7 @@ const { data: accountHolders } = useQueryGraphStep({
],
})
// accountHolders.customer
// accountHolders[0].customer
```
</CodeTab>
@@ -328,7 +328,7 @@ const { data: paymentCollections } = await query.graph({
],
})
// paymentCollections.order
// paymentCollections[0].order
```
</CodeTab>
@@ -346,7 +346,7 @@ const { data: paymentCollections } = useQueryGraphStep({
],
})
// paymentCollections.order
// paymentCollections[0].order
```
</CodeTab>
@@ -421,7 +421,7 @@ const { data: paymentProviders } = await query.graph({
],
})
// paymentProviders.regions
// paymentProviders[0].regions
```
</CodeTab>
@@ -439,7 +439,7 @@ const { data: paymentProviders } = useQueryGraphStep({
],
})
// paymentProviders.regions
// paymentProviders[0].regions
```
</CodeTab>