a
(object, default: {}
): The input object to be processed or modified by the node. If no input is provided, an empty object {}
will be used as the default.result
(object): The resulting object after any modifications or transformations have been applied.a
input port. If you want to start with an empty object, you can skip this step.result
output port.result
output to other nodes in your spell to perform further operations or use the object data as needed.object1
is created with an input object containing properties like name
, age
, and city
.result
output of object1
is connected to the message
input of a Debug Log node log1
.result
output to other nodes that expect object data as input.a
input port is a valid JavaScript object. Passing non-object data may lead to unexpected behavior.