MCPcopy
hub / github.com/drizzle-team/drizzle-orm / gte

Function gte

drizzle-orm/src/sql/expressions/conditions.ts:215–217  ·  view source on GitHub ↗
(left: SQLWrapper, right: unknown)

Source from the content-addressed store, hash-verified

213 * @see gt for a strictly greater-than condition
214 */
215export const gte: BinaryOperator = (left: SQLWrapper, right: unknown): SQL => {
216 return sql`${left} >= ${bindIfParam(right, left)}`;
217};
218
219/**
220 * Test that the first expression passed is less than

Callers 15

mysql.test.tsFile · 0.90
pg.test.tsFile · 0.90
turso.test.tsFile · 0.90
vercel.test.tsFile · 0.90
testsFunction · 0.90
funcFunction · 0.90
testsFunction · 0.90
testsFunction · 0.90

Calls 2

sqlFunction · 0.90
bindIfParamFunction · 0.85

Tested by 1

funcFunction · 0.72