Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/postgrest/src/lib/PostgrestFilterBuilder.ts>PostgrestFilterBuilder#lte

Isomorphic JavaScript client for PostgREST.
Latest
method PostgrestFilterBuilder.prototype.lte
import { PostgrestFilterBuilder } from "https://deno.land/x/postgrest@1.1.0/src/lib/PostgrestFilterBuilder.ts";

Finds all rows whose value on the stated column is less than or equal to the specified value.

Parameters

column: keyof T

The column to filter on.

value: T[keyof T]

The value to filter with.