Update Operators

Update operates are used to modify records

Syntax

// Add operator
record.attribute += value

// Remove operator
record.attribute -= value

// Set operator
record.attribute := value

// Merge operator
record <- [ ... ]

Description

Examples

See Also

add | remove | set | merge | bind | commit