Skip to main content
Module

x/denodb/mod.ts>Model.offset

MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno
Latest
method Model.offset
import { Model } from "https://deno.land/x/denodb@v1.4.0/mod.ts";

Skip n values in the results.

await Flight.offset(10).get();

await Flight.offset(10).limit(2).get();

Type Parameters

T extends ModelSchema

Parameters

this: T
offset: number