Syntax

value.gt(otherValue) → result

Arguments

List of arguments to provide.
otherValue
string | number
required
The value to compare with. The type of the value being compared depends on the value used for comparison.

Optargs

No optional arguments.

Returns

result
boolean
Returns true if the first value is greater than the second value and false otherwise.

Behavior

  • Performs greater than comparison between two values.
  • Uses RuloDB’s comparison semantics for ordering and type handling.
  • Can be chained with other logical operators for complex conditions.

Notes & Caveats

  • Comparison behavior depends on the data types being compared.
  • String comparisons use lexicographic ordering.

Example

Filter high value orders

Filter for orders where the value is above 1,000,000.
await r
  .table('orders')
  .filter((doc) => doc.value.gt(1_000_000))
  .run(client);

Filter by score

Filter for posts with high engagement scores.
await r
  .table('posts')
  .filter((doc) => doc.engagementScore.gt(75))
  .run(client);
  • eq - Logical Equality Operation
  • ne - Logical Inequality Operation
  • lt - Logical Less Than Operation
  • le - Logical Less Than or Equal Operation
  • ge - Logical Greater Than or Equal Operation
  • and - Logical AND Operation
  • or - Logical OR Operation
  • not - Logical NOT Operation
  • field - Referencing a Field
  • filter - Filtering Documents

Found a typo? Or maybe a broken link? RuloDB is open-source, help us fix it!