import { CursorType, CursorConstraint } from './cursor'; import { WhereConstraint } from './where'; import { WhereFilterOp } from '../alias'; import { LimitConstraint } from './limit'; import { OrderByConstraint } from './orderBy'; import { OffsetConstraint } from './offset'; export type QueryConstraints = WhereConstraint | LimitConstraint<'limit' | 'limitToLast', number> | CursorConstraint | OrderByConstraint | OffsetConstraint;