> For the complete documentation index, see [llms.txt](https://waoo-app-builder.gitbook.io/waoo-app-builder/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://waoo-app-builder.gitbook.io/waoo-app-builder/nodes/logical-nodes/less-than-or-equal-less-than.md).

# Less than or equal - <=

<table><thead><tr><th width="374"> Condition</th><th>Value</th></tr></thead><tbody><tr><td>Released in version:</td><td>1.0.12</td></tr><tr><td>Flutter/Dart link:</td><td><a href="https://dart.dev/guides/language/language-tour#equality-and-relational-operators">https://dart.dev/guides/language/language-tour#equality-and-relational-operators</a></td></tr></tbody></table>

<figure><img src="/files/yb1OjBTwxEB7FbwDtToW" alt=""><figcaption><p>Less than or equal - Int &#x3C;= Int default node</p></figcaption></figure>

The "Less than or equal <=" node is a logical node where we look for the result if item1 is **Less than or equal to** item2. If item1 is less than or equal to item2, true is returned. If item1 is greater than item2, false is returned

| items                       | result |
| --------------------------- | ------ |
| item1 is greater than item2 | false  |
| item1 is equal to item2     | true   |
| item1 is less than item2    | true   |

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

| item1  | item2  | Node                                  |
| ------ | ------ | ------------------------------------- |
| Double | Double | Less than or equal - Double <= Double |
| Double | Int    | Less than or equal - Double <= Int    |
| Int    | Int    | Less than or equal - Int <= Int       |

**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 &#x3C;= operator to "item1" and "item2" inputs</td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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/less-than-or-equal-less-than.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.
