prismaOperators
constprismaOperators: {!=:string;<:string;<=:string;=:string;>:string;>=:string;in:string;notin:string; }
Defined in: packages/core/src/utils/formatQuery/utils.ts:75
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.