Quester Studio

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).

in ×1 inspect out ×1
Debug view; alias preview. Multiple outgoing edges (fan-out) share the same output.

Data

FieldTypeDescription
labelstringOptional UI label
expressionstringOptional JMESPath; omit to pass through

Input / output

Value
Execute inputPrevious node output
OutputFull previous output, or JMESPath result

Examples

Passthrough

{
  "id": "peek",
  "type": "inspect",
  "data": { "label": "Inspect" }
}

Subset

{
  "type": "preview",
  "data": { "expression": "body.products[0]" }
}