Skip to content

Commit 462dcd8

Browse files
Merge pull request #282154 from ecfan/designer
[Content Freshness] Perform data operations - UX updates
2 parents 00d6ed4 + 1944817 commit 462dcd8

File tree

127 files changed

+278
-672
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+278
-672
lines changed

articles/logic-apps/logic-apps-data-operations-code-samples.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@ services: logic-apps
55
ms.suite: integration
66
ms.reviewer: estfan, azla
77
ms.topic: conceptual
8-
ms.date: 12/13/2023
8+
ms.date: 07/31/2024
99
---
1010

1111
# Data operation code samples for Azure Logic Apps
1212

1313
[!INCLUDE [logic-apps-sku-consumption-standard](../../includes/logic-apps-sku-consumption-standard.md)]
1414

15-
Here are the code samples for the data operation action definitions in the article, [Perform data operations](../logic-apps/logic-apps-perform-data-operations.md). You can use these samples for when you want to try the examples with your own logic app's underlying workflow definition, Azure subscription, and API connections. Just copy and paste these action definitions into the code view editor for your logic app's workflow definition, and then modify the definitions for your specific workflow.
15+
Here are the code samples for the data operation action definitions in the article, [Perform data operations](logic-apps-perform-data-operations.md). You can use these samples for when you want to try the examples with your own logic app's underlying workflow definition, Azure subscription, and API connections. Just copy and paste these action definitions into the code view editor for your logic app's workflow definition, and then modify the definitions for your specific workflow.
1616

1717
Based on JavaScript Object Notation (JSON) standards, these action definitions appear in alphabetical order. However, in the Logic App Designer, each definition appears in the correct sequence within your workflow because each action definition's `runAfter` property specifies the run order.
1818

1919
<a name="compose-action-example"></a>
2020

2121
## Compose
2222

23-
To try the [**Compose** action example](../logic-apps/logic-apps-perform-data-operations.md#compose-action),
23+
To try the [**Compose** action example](logic-apps-perform-data-operations.md#compose-action),
2424
here are the action definitions you can use:
2525

2626
```json
@@ -61,7 +61,7 @@ here are the action definitions you can use:
6161
{
6262
"name": "firstNameVar",
6363
"type": "String",
64-
"value": "Sophie "
64+
"value": "Sophia "
6565
}
6666
]
6767
},
@@ -74,7 +74,7 @@ here are the action definitions you can use:
7474
{
7575
"name": "lastNameVar",
7676
"type": "String",
77-
"value": "Owen"
77+
"value": "Owens"
7878
}
7979
]
8080
},
@@ -91,7 +91,7 @@ here are the action definitions you can use:
9191

9292
## Create CSV table
9393

94-
To try the [**Create CSV table** action example](../logic-apps/logic-apps-perform-data-operations.md#create-csv-table-action), here are the action definitions you can use:
94+
To try the [**Create CSV table** action example](logic-apps-perform-data-operations.md#create-csv-table-action), here are the action definitions you can use:
9595

9696
```json
9797
"actions": {
@@ -136,7 +136,7 @@ To try the [**Create CSV table** action example](../logic-apps/logic-apps-perfor
136136

137137
## Create HTML table
138138

139-
To try the [**Create HTML table** action example](../logic-apps/logic-apps-perform-data-operations.md#create-html-table-action),
139+
To try the [**Create HTML table** action example](logic-apps-perform-data-operations.md#create-html-table-action),
140140
here are the action definitions you can use:
141141

142142
```json
@@ -182,7 +182,7 @@ here are the action definitions you can use:
182182

183183
## Filter array
184184

185-
To try the [**Filter array** action example](../logic-apps/logic-apps-perform-data-operations.md#filter-array-action), here are the action definitions you can use:
185+
To try the [**Filter array** action example](logic-apps-perform-data-operations.md#filter-array-action), here are the action definitions you can use:
186186

187187
```json
188188
"actions": {
@@ -223,7 +223,7 @@ To try the [**Filter array** action example](../logic-apps/logic-apps-perform-da
223223

224224
## Join
225225

226-
To try the [**Join** action example](../logic-apps/logic-apps-perform-data-operations.md#join-action), here are the action definitions you can use:
226+
To try the [**Join** action example](logic-apps-perform-data-operations.md#join-action), here are the action definitions you can use:
227227

228228
```json
229229
"actions": {
@@ -264,7 +264,7 @@ To try the [**Join** action example](../logic-apps/logic-apps-perform-data-opera
264264

265265
## Parse JSON
266266

267-
To try the [**Parse JSON** action example](../logic-apps/logic-apps-perform-data-operations.md#parse-json-action), here are the action definitions you can use:
267+
To try the [**Parse JSON** action example](logic-apps-perform-data-operations.md#parse-json-action), here are the action definitions you can use:
268268

269269
```json
270270
"actions": {
@@ -277,9 +277,9 @@ To try the [**Parse JSON** action example](../logic-apps/logic-apps-perform-data
277277
"type": "Object",
278278
"value": {
279279
"Member": {
280-
"Email": "Sophie.Owen@contoso.com",
281-
"FirstName": "Sophie",
282-
"LastName": "Owen"
280+
"Email": "Sophia.Owens@fabrikam.com",
281+
"FirstName": "Sophia",
282+
"LastName": "Owens"
283283
}
284284
}
285285
}
@@ -324,7 +324,7 @@ To try the [**Parse JSON** action example](../logic-apps/logic-apps-perform-data
324324

325325
## Select
326326

327-
To try the [**Select** action example](../logic-apps/logic-apps-perform-data-operations.md#select-action), the following action definitions create a JSON object array from an integer array:
327+
To try the [**Select** action example](logic-apps-perform-data-operations.md#select-action), the following action definitions create a JSON object array from an integer array:
328328

329329
```json
330330
"actions": {
@@ -363,7 +363,7 @@ To try the [**Select** action example](../logic-apps/logic-apps-perform-data-ope
363363
},
364364
```
365365

366-
The following example shows action definitions that create a string array from a JSON object array, but for this task, next to the **Map** box, switch to text mode (![Icon for text mode.](media/logic-apps-perform-data-operations/text-mode.png)) in the designer, or use the code view editor instead:
366+
The following example shows action definitions that create a string array from a JSON object array, but for this task, next to the **Map** box, switch to text mode (**T** icon) in the designer, or use the code view editor instead:
367367

368368
```json
369369
"actions": {
@@ -402,4 +402,4 @@ The following example shows action definitions that create a string array from a
402402

403403
## Next steps
404404

405-
* [Perform data operations](../logic-apps/logic-apps-perform-data-operations.md)
405+
* [Perform data operations](logic-apps-perform-data-operations.md)

0 commit comments

Comments
 (0)