div

Divides one aggregation value by another.

Example

class ConferencePlanning(
val hours: Int,
val workdays: Double,
)

collection.updateManyWithPipeline {
set {
ConferencePlanning::workdays set (of(ConferencePlanning::hours) / of(8))
}
}

External resources