|
1 | 1 | ---
|
2 |
| -# required metadata |
3 |
| -title: Data operation samples - Azure Logic Apps | Microsoft Docs |
4 |
| -description: Code samples for data operation action definitions in Azure Logic Apps |
| 2 | +title: Data operation samples - Azure Logic Apps |
| 3 | +description: Code samples for data operation actions in Azure Logic Apps |
5 | 4 | services: logic-apps
|
6 | 5 | ms.service: logic-apps
|
| 6 | +ms.suite: integration |
7 | 7 | author: ecfan
|
8 | 8 | ms.author: estfan
|
9 |
| -manager: jeconnoc |
10 |
| -ms.topic: reference |
11 |
| -ms.date: 07/25/2018 |
12 |
| - |
13 |
| -# optional metadata |
| 9 | +manager: carmonm |
14 | 10 | ms.reviewer: klam, LADocs
|
15 |
| -ms.suite: integration |
| 11 | +ms.topic: reference |
| 12 | +ms.date: 09/01/2019 |
16 | 13 | ---
|
17 | 14 |
|
18 | 15 | # Data operation code samples for Azure Logic Apps
|
19 | 16 |
|
20 |
| -Here are the code samples for the data operation action definitions in the article, |
21 |
| -[Perform data operations](../logic-apps/logic-apps-perform-data-operations.md). |
22 |
| -You can use these samples for when you want to try the examples with your own |
23 |
| -logic app's underlying workflow definition, Azure subscription, and API connections. |
24 |
| -Just copy and paste these action definitions into the code view editor for |
25 |
| -your logic app's workflow definition, and then modify the definitions for your specific workflow. |
| 17 | +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. |
26 | 18 |
|
27 |
| -Based on JavaScript Object Notation (JSON) standards, |
28 |
| -these action definitions appear in alphabetical order. |
29 |
| -However, in the Logic App Designer, each definition appears |
30 |
| -in the correct sequence within your workflow because each |
31 |
| -action definition's `runAfter` property specifies the run order. |
| 19 | +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. |
32 | 20 |
|
33 | 21 | <a name="compose-action-example"></a>
|
34 | 22 |
|
@@ -105,8 +93,7 @@ here are the action definitions you can use:
|
105 | 93 |
|
106 | 94 | ## Create CSV table
|
107 | 95 |
|
108 |
| -To try the [**Create CSV table** action example](../logic-apps/logic-apps-perform-data-operations.md#create-csv-table-action), |
109 |
| -here are the action definitions you can use: |
| 96 | +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: |
110 | 97 |
|
111 | 98 | ```json
|
112 | 99 | "actions": {
|
@@ -197,8 +184,7 @@ here are the action definitions you can use:
|
197 | 184 |
|
198 | 185 | ## Filter array
|
199 | 186 |
|
200 |
| -To try the [**Filter array** action example](../logic-apps/logic-apps-perform-data-operations.md#filter-array-action), |
201 |
| -here are the action definitions you can use: |
| 187 | +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: |
202 | 188 |
|
203 | 189 | ```json
|
204 | 190 | "actions": {
|
@@ -239,8 +225,7 @@ here are the action definitions you can use:
|
239 | 225 |
|
240 | 226 | ## Join
|
241 | 227 |
|
242 |
| -To try the [**Join** action example](../logic-apps/logic-apps-perform-data-operations.md#join-action), |
243 |
| -here are the action definitions you can use: |
| 228 | +To try the [**Join** action example](../logic-apps/logic-apps-perform-data-operations.md#join-action), here are the action definitions you can use: |
244 | 229 |
|
245 | 230 | ```json
|
246 | 231 | "actions": {
|
@@ -281,8 +266,7 @@ here are the action definitions you can use:
|
281 | 266 |
|
282 | 267 | ## Parse JSON
|
283 | 268 |
|
284 |
| -To try the [**Parse JSON** action example](../logic-apps/logic-apps-perform-data-operations.md#parse-json-action), |
285 |
| -here are the action definitions you can use: |
| 269 | +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: |
286 | 270 |
|
287 | 271 | ```json
|
288 | 272 | "actions": {
|
@@ -341,8 +325,7 @@ here are the action definitions you can use:
|
341 | 325 |
|
342 | 326 | ## Select
|
343 | 327 |
|
344 |
| -To try the [**Select** action example](../logic-apps/logic-apps-perform-data-operations.md#select-action), |
345 |
| -here are the action definitions you can use: |
| 328 | +To try the [**Select** action example](../logic-apps/logic-apps-perform-data-operations.md#select-action), here are the action definitions you can use: |
346 | 329 |
|
347 | 330 | ```json
|
348 | 331 | "actions": {
|
@@ -381,11 +364,6 @@ here are the action definitions you can use:
|
381 | 364 | },
|
382 | 365 | ```
|
383 | 366 |
|
384 |
| -## Get support |
385 |
| - |
386 |
| -* For questions, visit the [Azure Logic Apps forum](https://social.msdn.microsoft.com/Forums/en-US/home?forum=azurelogicapps). |
387 |
| -* To submit or vote on feature ideas, visit the [Logic Apps user feedback site](https://aka.ms/logicapps-wish). |
388 |
| - |
389 | 367 | ## Next steps
|
390 | 368 |
|
391 | 369 | * [Perform data operations](../logic-apps/logic-apps-perform-data-operations.md)
|
0 commit comments