UpdateMode type

The different modes for Update and Upsert methods

  • Merge: Updates an entity by updating the entity's properties without replacing the existing entity.
  • Replace: Updates an existing entity by replacing the entire entity.
type UpdateMode = "Merge" | "Replace"