# $gte

`$gte` operator lets you evaluate **greater than or equal to** between 2 values to be compared. You can use this in any [**Conditional Objects**](https://docs.cosmocloud.io/flow-builder/cql-cosmocloud-query-language/building-conditions/conditional-operators).

## Syntax

```json
{
    <key>: {
        "$gte": <value>
    }
}
```

### Properties

| Field    | Description                                                                                               | Required |
| -------- | --------------------------------------------------------------------------------------------------------- | -------- |
| \<key>   | <p>The key which needs to be compared with the value.<br><br>This can also be a Magical Autocomplete.</p> | true     |
| \<value> | <p>The value to compare the <code>\<key></code> with.<br><br>This can also be a Magical Autocomplete.</p> | true     |

## Examples

Let's say we have declared a variable `age` in our API flow, which has a value of **25** currently.

```json
{
    "$.variables.age": {
        "$gte": 20
    }
}
```

The above expression would resolve to **true**.


---

# 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.cosmocloud.io/flow-builder/cql-cosmocloud-query-language/building-conditions/conditional-operators/usdgte.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.
