Skip to content

Recipes & patterns (App Connect Flows)

Common App Connect Flows patterns: Inline Flow for quick UI glue, Page Flow for in-page orchestration, App Flow for reusable workflows with outputs.

This how-to collection is meant to lower the entry cost for App Flows by starting from repeatable tasks instead of abstract theory. Use it to find the exact workflow you need, understand where that action lives in the editor, and then branch into the focused tour that matches your next step.

Inline Flow
Small glue No outputs
Page Flow
In-page orchestration Page context
App Flow
Reusable workflow Returns results
Inline Flow: quick sequences inside event handlers; keep it short.
Page Flow: multi-step UI orchestration inside a page; great for branching UI flows.
App Flow: reusable, isolated workflows with inputs/outputs; call from pages and use results.

Start from a user action (click, submit, change) and run follow-up steps.

Use Inline Flow for a short sequence. Use Page Flow when it becomes multi-step with branching. Use App Flow when you want reuse + results.

Keep triggers predictable and named clearly.
For secure work, call a server endpoint and handle results in the flow.

Use conditions to branch and run different steps based on values, responses, or UI state.

Treat errors as a branch (happy path vs error path), and keep results/status explicit so your UI can react.

Treat errors as a branch (happy path vs. error path).
Log or surface info early while building.

Combine flows with data sources/actions (like API calls) to load, transform, and use data.

Rule of thumb: if it must be secure or touch the database, call a Server Connect Action, then use the response in your Page Flow / App Flow.

Prefer JSON-in / JSON-out building blocks.
Keep data shaping on the server when possible.

Keep large projects manageable.

Inline Flow stays small and local. Page Flow keeps per-page orchestration readable. App Flow splits complex tasks into reusable flows and returns results.

Split complex flows into reusable sub-flows.
Prefer short, composable flows over one giant one.

Pick what you want to learn next.