File size: 1,963 Bytes
0a84888
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
contentType: reference
---

# `("<node-name>").all(branchIndex?: number, runIndex?: number)`

This gives access to all the items of the current or parent nodes. If you don't supply any parameters, it returns all the items of the current node.

## Getting items

=== "JavaScript"
	```js
	// Returns all the items of the given node and current run
	let allItems = $("<node-name>").all();

	// Returns all items the node "IF" outputs (index: 0 which is Output "true" of its most recent run)
	let allItems = $("IF").all();

	// Returns all items the node "IF" outputs (index: 0 which is Output "true" of the same run as current node)
	let allItems = $("IF").all(0, $runIndex);

	// Returns all items the node "IF" outputs (index: 1 which is Output "false" of run 0 which is the first run)
	let allItems = $("IF").all(1, 0);
	```
=== "Python"
	```python
	# Returns all the items of the given node and current run
	allItems = _("<node-name>").all();

	# Returns all items the node "IF" outputs (index: 0 which is Output "true" of its most recent run)
	allItems = _("IF").all();

	# Returns all items the node "IF" outputs (index: 0 which is Output "true" of the same run as current node)
	allItems = _("IF").all(0, _runIndex);

	# Returns all items the node "IF" outputs (index: 1 which is Output "false" of run 0 which is the first run)
	allItems = _("IF").all(1, 0);
	```

## Accessing item data

Get all items output by a previous node, and log out the data they contain:

=== "JavaScript"
	```typescript
	previousNodeData = $("<node-name>").all();
	for(let i=0; i<previousNodeData.length; i++) {
		console.log(previousNodeData[i].json);
	}
	```
=== "Python"
	```python
	previousNodeData = _("<node-name>").all();
	for item in previousNodeData:
		# item is of type <class 'pyodide.ffi.JsProxy'>
		# You need to convert it to a Dict
  		itemDict = item.json.to_py()
  		print(itemDict)
	```