You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dorm/vendor/github.com/kamva/mgm/v3/operator/update.go

41 lines
653 B

package operator
// Fields
const (
CurrentDate = "$currentDate"
Inc = "$inc"
Min = "$min"
Max = "$max"
Mul = "$mul"
Rename = "$rename"
Set = "$set"
SetOnInsert = "$setOnInsert"
Unset = "$unset"
)
// Array Operators
const (
// $: Act as a modifier
// $[]: Act as a modifier
// $[<identifier>]: Act as a modifier
AddToSet = "$addToSet"
Pop = "$pop"
Pull = "$pull"
Push = "$push"
PullAll = "$pullAll"
)
// Array modifiers
const (
Each = "$each"
Position = "$position"
// Slice = "$slice" // Declared
Sort = "$sort"
)
// Array bitwise
const (
Bit = "$bit"
)