A flag stores a boolean value, that can be changed
let flag = connection.flag_ew("myflag") await connection.update( flag.set(true) ) let val = await flag.read();
the parent factory
reads the current value of the object
Creates an operation to set the flag to the given value. Use Connection.update to send the update to the database.
Generated using TypeDoc
A flag stores a boolean value, that can be changed
let flag = connection.flag_ew("myflag") await connection.update( flag.set(true) ) let val = await flag.read();