--- id: results title: Configuring Response ---
Within the **Response** node, specify the output by using a return statement that encapsulates an object within parentheses:
```js
return ({generateCSVData})
```
## Returning Data From Multiple Nodes
You can also return data from other nodes. Either return the complete data set or specify only the required portions, as demonstrated below:
```js
return
({sales: getSalesData.data,
inventory: getInventory.data,
csv: generateCSVData.data})
```
## Fine Tuning Your Response Using JavaScript
Refine your response by manipulating the data using JavaScript functions. For example, the slice function can be used to select a subset of data:
```js
return
({sales: getSalesData.data.slice(0,5),
inventory: getInventory.data.slice(0,5),
csv: generateCSVData.data})
```
## Workflow Execution
When executing workflows with triggers, the configured data in the **Response** node will be included in the API response. When triggered inside a ToolJet app, the data will be returned in the same format as a regular query.