Skip to content

Braga has been retired. The next public testnet is coming in September 2026. Read the announcement →

gte(key, value): Predicate

Defined in: src/query/predicate.ts:101

Creates a greater than or equal predicate

string

The key to compare

The value to compare

string | number

Predicate

The greater than or equal predicate

const predicate = gte("name", "John")
// result = { type: "gte", key: "name", value: "John" }