inspect
Pass through or JMESPath-subset previous output for debugging; alias preview
Debug/display step — same idea as json: passthrough or JMESPath subset of the previous output. Alias type: preview.
Prefer this when you want an explicit “inspect” step in the canvas; json remains available for the same behavior. Expressions start at the previous root (body), not previous.body (How flows work).
Data
| Field | Type | Description |
|---|---|---|
label | string | Optional UI label |
expression | string | Optional JMESPath; omit to pass through |
Input / output
| Value | |
|---|---|
| Execute input | Previous node output |
| Output | Full previous output, or JMESPath result |
Examples
Passthrough
{
"id": "peek",
"type": "inspect",
"data": { "label": "Inspect" }
}
Subset
{
"type": "preview",
"data": { "expression": "body.products[0]" }
}