offset()

Set the "offset" value of the query.


Usage

import { useRepo } from 'pinia-orm'import User from './models/User'const userRepo = useRepo(User)// Remove the last 30 usersuseRepo(User).offset(30).get()

Typescript Declarations

function offset(value: number): Query