MCPcopy Index your code
hub / github.com/TanStack/db / gte

Function gte

packages/db/src/query/builder/functions.ts:172–174  ·  view source on GitHub ↗
(left: any, right: any)

Source from the content-addressed store, hash-verified

170): BasicExpression<boolean>
171export function gte<T>(left: Aggregate<T>, right: any): BasicExpression<boolean>
172export function gte(left: any, right: any): BasicExpression<boolean> {
173 return new Func(`gte`, [toExpression(left), toExpression(right)])
174}
175
176export function lt<T>(
177 left: ComparisonOperand<T>,

Callers 5

indexes.test.tsFile · 0.90

Calls 1

toExpressionFunction · 0.85

Tested by

no test coverage detected