UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

12 lines (11 loc) 381 B
import { getHelpers } from '../../../helpers/index.js'; export function applyLimit(knex, rootQuery, limit) { if (typeof limit === 'number') { getHelpers(knex).schema.applyLimit(rootQuery, limit); } } export function applyOffset(knex, rootQuery, offset) { if (typeof offset === 'number') { getHelpers(knex).schema.applyOffset(rootQuery, offset); } }