Skip to main content

Data Operations

WFBs that are used to operate on data, like save, delete, and read an object.

NameDescription ParametersResult
Add ItemCreates a new database object and sets it to the given elementElement: Element casted as a database objectReturns the created object as a current parameter
Delete ItemDeletes selected element object from the databaseElement: Element deleted from databaseReturns the deleted object as a current parameter
Delete Item By FilterDeletes selected element object from the database based on specified filters
  • Datamodel and Datasource: Where the data is located
  • Filter: The filter that will be applied to find the specified item and delete it
  • Returns the ID of the container in which the deletion was made on the current parameter
    Save ItemStores or updates an object in the database
  • Element: Element wanted to save to database
  • Advanced: Advanced storage settings on which container the object should be stored
  • Return the created object as a current parameter
    Read DataRead data from the database
  • Datamodel and Datasource: Where the data is located
  • Columns: Columns to be read
  • Filter: Filter the data based on criteria using different operators (Like, Equal, etc)
  • Sorting: Sorting of the read data
  • Use count: Number of objects
  • Returns the list of entries or the count as a current parameter
    RefreshUpdate shown database objects in the specified elementElement: Element to refreshN/A