You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pages/admin-ui-sdk/extension-points/order.md
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,8 @@ keywords:
10
10
11
11
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.
12
12
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
+
13
15
## Example customization
14
16
15
17
The following example creates custom columns labeled `First App Column` and `Second App Column`.
@@ -45,8 +47,8 @@ order: {
45
47
46
48
| Field | Type | Required | Description |
47
49
| --- | --- | --- | --- |
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.|
50
52
|`properties.align`| string | Yes | The alignment of the values in the column. One of `left`, `right`, `center`. |
51
53
|`properties.columnId`| string | Yes | The identifier used in the external dataset to identify the column. |
52
54
|`properties.label`| string | Yes | The label of the column to display. |
Copy file name to clipboardExpand all lines: src/pages/admin-ui-sdk/extension-points/product.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,6 @@ product: {
50
50
|`confirm.message`| string | No | The message displayed on the confirmation dialog for a mass action |
51
51
|`confirm.title`| string | No | The title of a dialog that confirms the mass action |
52
52
|`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. |
54
54
|`productSelectLimit`| integer | No | Set the maximum number products that can be selected for a mass action. By default, the number is unlimited. |
55
55
|`type`| string | Yes | A unique ID that identifies the type of the action. |
0 commit comments