previewUpdatePlan method
MutationPlan
previewUpdatePlan(
- List<
Object> inputs, { - Object? where,
- JsonUpdateBuilder<
T> ? jsonUpdates, - bool returning = false,
Builds but does not execute an update plan (useful for previews).
Implementation
MutationPlan previewUpdatePlan(
List<Object> inputs, {
Object? where,
JsonUpdateBuilder<T>? jsonUpdates,
bool returning = false,
}) => _buildUpdatePlanFromInputs(
inputs,
where: where,
jsonUpdates: jsonUpdates,
returning: returning,
);