QueryAction enum
Query action types (matching Prisma's actions).
Values
- findUnique → const QueryAction
-
const QueryAction('findUnique') - findUniqueOrThrow → const QueryAction
-
const QueryAction('findUniqueOrThrow') - findFirst → const QueryAction
-
const QueryAction('findFirst') - findFirstOrThrow → const QueryAction
-
const QueryAction('findFirstOrThrow') - findMany → const QueryAction
-
const QueryAction('findMany') - create → const QueryAction
-
const QueryAction('create') - createMany → const QueryAction
-
const QueryAction('createMany') - update → const QueryAction
-
const QueryAction('update') - updateMany → const QueryAction
-
const QueryAction('updateMany') - upsert → const QueryAction
-
const QueryAction('upsert') - delete → const QueryAction
-
const QueryAction('delete') - deleteMany → const QueryAction
-
const QueryAction('deleteMany') - aggregate → const QueryAction
-
const QueryAction('aggregate') - groupBy → const QueryAction
-
const QueryAction('groupBy') - count → const QueryAction
-
const QueryAction('count')
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → String
-
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
QueryAction> - A constant List of the values in this enum, in order of their declaration.