Please enable JavaScript.
Coggle requires JavaScript to display documents.
2.1 Logic Apps - Coggle Diagram
2.1 Logic Apps
trigger
-
polling trigger
periodically checks an external service for new data
push trigger
subscribes to an event offered by the external service to get notified immediately when data is available
-
-
-
-
Logic Apps execution engine will create one instance of your Logic App for each data item and the instances will run in parallel
action
- use services outside of your Logic App
- very common
-
-
-
-
-
control action
Condition action
-
-
if (a AND b AND c) // OK
if (a AND b OR c) // Error, cannot mix AND and OR
-
-
Foreach loop
By default, the actions for each array element run in parallel,
Until loop
- Condition: an expression evaluated after every iteration
- Count: the maximum number of iterations (the default is 60)
- Timeout
- Plan your business process
- Identify the type of each step in your process
- trigger, action, and control action
- Map your steps to Logic Apps components
- connector as a component that lets you access an external service.
- Define your app using the Logic Apps Designer
- A trigger
event that occurs when a specific set of conditions is satisfied. Every Logic App must start with a trigger.
- An action is an operation that executes one of the tasks in your business process. Actions run when a trigger activates or another action completes.
- Control actions are special built-in actions that let you add decisions and loops to your app.
-