Skip to content

Output of other nodes#

Methods for working with the output of other nodes. Some methods and variables aren't available in the Code node.

Output of other nodes#

Method Description Available in Code node?
$("<node-name>").all(branchIndex?, runIndex?) Returns all items from a given node. ✅
$("<node-name>").first(branchIndex?, runIndex?) The first item output by the given node ✅
$("<node-name>").last(branchIndex?, run Index?) The last item output by the given node. ✅
$("<node-name>").item The linked item. This is the item in the specified node used to produce the current item. Refer to Item linking for more information on item linking. ❌
$("<node-name>").params Object containing the query settings of the given node. This includes data such as the operation it ran, result limits, and so on. ✅
$("<node-name>").context Only available when working with the Split in Batches node. Provides information about what's happening in the node, allowing you to see if the node is still processing items. ✅
$("<node-name>").itemMatching(currentNodeinputIndex) Use instead of $("<node-name>").item in the Code node if you need to trace back from an input item. ✅