Data structure#
In Ensemble, all data passed between nodes is an array of objects.
Structure syntax#
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
|
Additional information#
JSON key and array syntax#
When using the Function node or Code node, Ensemble automatically:
* adds the json
key if it is missing
* wraps your items in an [...]
array if necessary
Data item processing#
Nodes can process multiple items.
For example, if you set the Trello node to Create-Card
, and create an expression that sets Name
using a property called name-input-value
from the incoming data, the node creates a card for each item, always choosing the name-input-value
of the current item.
For example, this input will create two cards. One named test1
the other one named test2
:
1 2 3 4 5 6 7 8 |
|