Skip to main content

Object Viewer

This node renders a JSON object or array as a tree view.

The Object Viewer (Dict Viewer) node is a debugging tool for visualizing complex data structures.

The Object Viewer node displays any data passed to it in a collapsible, readable format. It is essentially a "Show Value" node on steroids, optimized for inspecting large JSON objects during development.

Inputs

Data

DataDescription
DataThe object or array to inspect.

Actions

SignalDescription
DoTriggers a re-render (though it usually updates reactively).

Outputs

This node is purely visual and has no data outputs.

Usage

Debugging API Responses

  1. Connect the Result of a REST node to the Data input of an Object Viewer.
  2. When the request completes, you can explore the entire JSON response structure interactively.

Detailed Behavior

  • Interactive: You can click to expand/collapse objects and arrays.
  • Scrollable: The container handles overflow automatically.

Troubleshooting

  • Empty: If the input is null or undefined, it may show nothing or {}.