Quester Studio

input

Puts the flow run payload on the wire (not the graph entry)

Places the Run panel / --input JSON on the wire for the next node. The graph entry is start, not input.

Typical chain: start → input → http → …

Name collision: this node type is not the same as {{input.*}} (run payload in templates) or “execute input” (previous node JSON). You do not need an input node just to read run data later — {{input.username}} works from any templated field. See How flows work.

in ×1 input out ×1
Puts run payload on the wire. Multiple outgoing edges (fan-out) share the same output.

Data

FieldTypeDescription
labelstringOptional UI label
valueanyDefault run payload persisted in the flow file (desktop Run panel loads this)
schemaobjectOptional JSON Schema-like hint (not enforced at execute time)

Input / output

Value
Execute inputPrevious node output (often {} from start) — ignored
OutputThe flow run input object (--input / Run panel)

Examples

After start

{
  "id": "input",
  "type": "input",
  "data": {
    "label": "Credentials",
    "value": {
      "username": "demo",
      "email": "demo@example.com"
    }
  }
}

Desktop loads data.value into the Run input editor when you open the flow. CLI --input still overrides at execute time:

--input '{"username":"demo","email":"demo@example.com"}'

Output:

{ "username": "demo", "email": "demo@example.com" }

Prefer templates when you only need fields

{
  "headers": { "X-User": "{{input.username}}" }
}

extract always reads the previous node (e.g. HTTP body.id), not the run payload. For JMESPath over the run object without templates, put an input node immediately before extract.