Skip to main content

prismaOperators

const prismaOperators: { !=: string; <: string; <=: string; =: string; >: string; >=: string; in: string; notin: string; }

Defined in: packages/react-querybuilder/src/utils/formatQuery/utils.ts:73

Maps a (lowercase) DefaultOperatorName to a Prisma ORM operator.

Type declaration

!=

!=: string = 'not'

<

<: string = 'lt'

<=

<=: string = 'lte'

=

=: string = 'equals'

>

>: string = 'gt'

>=

>=: string = 'gte'

in

in: string = 'in'

notin

notin: string = 'notIn'


caution

API documentation is generated from the latest commit on the main branch. It may be somewhat inconsistent with official releases of React Query Builder.