Flows
Learn about Flows in Laminar
Overview
Flows in Laminar are data transformation jobs that handle transformation between APIs.
They can specify a source and destination, and run a jq program for data transformations. Each flow runs as part of a Workflow and has an execution order.
Sequence of execution
Flows run the following sequence to complete:
Make request on Source API or receive Input data.
Run data transformation on Global Workflow Object.
Make request on Destination API with the resulting data transformation from this flow specifically.
Flows can output Laminar Keywords as part of their transformations to invoke other Workflows.
Flow Model
id
Integer (int64)
name
String
description
String
program
String (jq program)
sourceId
Integer (int64), optional
destinationId
Integer (int64), optional
workflowId
Integer (int64)
executionOrder
Integer (int64)
Last updated