# Equal - ==

| Condition            | Value                                                                              |
| -------------------- | ---------------------------------------------------------------------------------- |
| Released in version: | 1.0.0                                                                              |
| Flutter/Dart link:   | <https://dart.dev/guides/language/language-tour#equality-and-relational-operators> |

![Equal == default node](/files/3hYpCYSHYAsgZMAflMyz)

The "Equal ==" node is a logical node where we look for the result of knowing if both conditions are **equal**. If they are equal, true is returned, if they are equal, false is returned.&#x20;

The equal node has multiple variations depending on the type as shown in the table below:

| Type     | Node                  |
| -------- | --------------------- |
| Bool     | Equal - != - Bool     |
| Color    | Equal - != - Color    |
| DateTime | Equal - != - DateTime |
| Double   | Equal - != - Double   |
| Int      | Equal - != - Int      |
| String   | Equal - != - String   |

#### Inputs

<table><thead><tr><th>Input Name</th><th width="150" data-type="checkbox">Canvas Required</th><th width="150">Type</th><th>Description</th></tr></thead><tbody><tr><td>item1</td><td>true</td><td>Depends on the node</td><td>Condition 1</td></tr><tr><td>item2</td><td>true</td><td>Depends on the node</td><td>Condition 2</td></tr></tbody></table>

#### Outputs

<table><thead><tr><th width="213.57142857142856">Output Name</th><th width="150" data-type="checkbox">Canvas Required</th><th width="150">Type</th><th>Description</th></tr></thead><tbody><tr><td>result</td><td>true</td><td>Bool</td><td>Result from applying the == operator to "item1" and "item2" inputs</td></tr></tbody></table>


---

# 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://waoo-app-builder.gitbook.io/waoo-app-builder/nodes/logical-nodes/equal.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.
