Read parameter modes
read_parameter_modesRetrieve parameter modes and raw expressions from a node for faithful serialization, diffing, and debugging. non_default_only highlights parameters that would be lost in a plain copy.
Instructions
Read-only: for each parameter of a node, report its mode (CONSTANT / EXPRESSION / EXPORT / BIND), its evaluated value, and its raw expression / bind-expression / export-source strings. Use this to faithfully serialize a network for round-trip editing, diffing, or debugging — the evaluated value alone hides which parameters are driven by expressions or exports. Set non_default_only to surface only the parameters that would be lost in a plain value copy.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Full path of the node whose parameters to inspect. | |
| keys | No | Only report these parameter names (case-sensitive). Omit for all parameters. | |
| non_default_only | No | Only return parameters whose mode is not plain constant (i.e. expression/export/bind) — the ones that matter for a faithful round-trip. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | ||
| type | Yes | ||
| name | Yes | ||
| parameters | Yes | ||
| probe | No | ||
| warnings | Yes |