# Output

The output of a function reflects its return value, typically generated after the function's action has been completed. Depending on the nature of the function, the output can take various forms:

* Data (string, number, integer, boolean, array, object)
* Files
* Images

{% hint style="info" %}
The return value of certain function, their output, may also only indicate the success or failure of the function's exectuion, typically represented as `true` or `false`.
{% endhint %}

## Utilizing output

Function output data can be utilized in many ways. It can:

* **Become input for another function:** Serve as an input argument for another function to build a [flow](https://docs.heisenware.com/~/changes/Q625pQNc0nXqVGPtyjAY/building-apps/data-processing/functions/..#flows).
* **Trigger functions:** Initiate the execution of one or more functions.
* **Visualize in widgets:** Processed in [display widgets](https://docs.heisenware.com/~/changes/Q625pQNc0nXqVGPtyjAY/building-apps/ui-elements/display-widgets) for UI presentation.
* **Set widget behavior properties:** Influence the behavior properties of a widget.

Furthermore, through [function extensions](https://docs.heisenware.com/~/changes/Q625pQNc0nXqVGPtyjAY/building-apps/data-processing/functions/..#extensions), an output can automatically be:

* **Modified with custom code:** Processed with custom code to generate [modified data](https://docs.heisenware.com/~/changes/Q625pQNc0nXqVGPtyjAY/building-apps/data-processing/function-extensions/modifier).
* **Filtered with code:** Subjected to code [filters](https://docs.heisenware.com/~/changes/Q625pQNc0nXqVGPtyjAY/building-apps/data-processing/function-extensions/filter) to control flow interruption or continuation.
* **Recorded in** [**InfluxDB**](https://docs.heisenware.com/~/changes/Q625pQNc0nXqVGPtyjAY/building-apps/data-and-file-storage/internal-influxdb)**:** Automatically recorded in the InfluxDB for storage.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.heisenware.com/~/changes/Q625pQNc0nXqVGPtyjAY/building-apps/data-processing/functions/output.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
