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#in

Isomorphic JavaScript client for PostgREST.
Latest
method PostgrestFilterBuilder.prototype.in
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 found on the specified values.

Parameters

column: keyof T

The column to filter on.

values: T[keyof T][]

The values to filter with.