previewUpdatePlan method

MutationPlan previewUpdatePlan(
  1. List<Object> inputs, {
  2. Object? where,
  3. JsonUpdateBuilder<T>? jsonUpdates,
  4. 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,
);