Skip to content

Commit b9f70b4

Browse files
committed
Review comments
1 parent fc2e776 commit b9f70b4

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/pages/admin-ui-sdk/extension-points/order.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ keywords:
1010

1111
The `order` extension point enables you to add columns to the grid on the **Sales** > **Orders** page in the Adobe Commerce Admin. This extension point requires a GraphQL Mesh instance to retrieve the data to be added to the custom columns.
1212

13+
You can use the [`aio api-mesh:describe` command](https://developer.adobe.com/graphql-mesh-gateway/gateway/command-reference/#aio-api-meshdescribe) to retrieve the values of the API key and mesh ID. The key is appended to the mesh endpoint URL.
14+
1315
## Example customization
1416

1517
​The following example creates custom columns labeled `First App Column` and `Second App Column`.
@@ -45,8 +47,8 @@ order: {
4547

4648
​| Field | Type | Required | Description |
4749
| --- | --- | --- | --- |
48-
| `data.apiKey` | string | Yes | The API key generated when [creating a GraphQL mesh](https://developer.adobe.com/graphql-mesh-gateway/gateway/create-mesh/). The key is displayed in the Developer Console.
49-
| `data.meshId` | string | Yes | The ID of the API Mesh used to retrieve the column data. The [`aio api-mesh:get` command](https://developer.adobe.com/graphql-mesh-gateway/gateway/command-reference/#aio-api-meshget) returns this ID.|
50+
| `data.apiKey` | string | Yes | The API key assigned to the GraphQL mesh. |
51+
| `data.meshId` | string | Yes | The ID of the mesh used to retrieve the column data.|
5052
| `properties.align` | string | Yes | The alignment of the values in the column. One of `left`, `right`, `center`. |
5153
| `properties.columnId` | string | Yes | The identifier used in the external dataset to identify the column. |
5254
| `properties.label` | string | Yes | The label of the column to display. |

src/pages/admin-ui-sdk/extension-points/product.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ product: {
5050
| `confirm.message` | string | No | The message displayed on the confirmation dialog for a mass action |
5151
| `confirm.title` | string | No | The title of a dialog that confirms the mass action |
5252
| `label` | string | Yes | An Action label to display in the Mass Actions grid |
53-
| `path` | string | Yes | The relative path in the application to redirect to the action. You might need to prepend `#/` to the path to ensure access to the correct page. The URL will be appended with a query of selected `productIds` |
53+
| `path` | string | Yes | The relative path in the application to redirect to the action. You might need to prepend `#/` to the path to ensure access to the correct page. |
5454
| `productSelectLimit` | integer | No | Set the maximum number products that can be selected for a mass action. By default, the number is unlimited. |
5555
| `type` | string | Yes | A unique ID that identifies the type of the action. |

0 commit comments

Comments
 (0)