Property Operations
Properties can be changed, deleted or checked with property operations.
Check property value
Section titled “Check property value”A Check compares a property value; subsequent operations run only when the check passes.
Check if firstName is John
Check( Person { firstName::ref } with "John", Person { lastName::ref } with "Smith")Change property value
Section titled “Change property value”Use Change to update a property value.
Change( Person { firstName::ref } with "Jane", Person { lastName::ref } with "Doe")Deletion
Section titled “Deletion”Set a property to null to delete it.
Change( Person { firstName::ref } with null)Changes on Map, List and Set properties
Section titled “Changes on Map, List and Set properties”Map, List and Set properties have specialised change operations documented on their respective pages.