Skip to main content
CYPEX Documentation
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage Support

Workflows

Creating workflows

After successfully creating this first application, it’s time to move forward and dive into workflows. The goal of the next application is to create a TODO list which can be modified by end users.

Here’s some sample data:

    BEGIN;

    CREATE ROLE todo_owner LOGIN;
    GRANT todo_owner TO authenticator;

    CREATE SCHEMA todo AUTHORIZATION todo_owner;

    CREATE TABLE todo.t_todo
    (
        id           	serial   	PRIMARY KEY,
        tstamp       	date     	DEFAULT now(),
        todo_item    	text     	NOT NULL,
        status       	text
    );

    INSERT INTO todo.t_todo (tstamp, todo_item, status)
    VALUES
     ('2021-03-04',' Do the laundry', 'created'),
     ('2021-03-06',' Cut the grass', 'accepted'),
     ('2021-03-09',' Eat a steak', 'success'),
     ('2021-03-12',' Slaughter a chicken', 'rejected');

    COMMIT;

For the sake of simplicity, the TODO list consists of just one table. What is noteworthy here is the last column: The status informs us about the state of an object. A task might have succeeded, failed or it might have been rejected.

Read full post

Release Notes v1.5.0

Release Notes v1.5.0

Features

  • Ability to remove the existing workflow
  • Default table simple filter, able to filter on a numeric column
  • Notifications can be created and sent by the admin to the end-user
  • Ability to see the difference between the query statement and the view statement
  • Added info on the queries that this app already includes
  • Ability to see tables and views list during query creation
  • Simple UI to build a fixed filter with expressions for the table by using autocomplete input elements
  • Ability to use the page load timestamp in custom expression
  • Use lodash in custom expressions
  • Ability to perform any actions via a button
  • Reset an autocomplete input on call button success
  • Show more values in the autocomplete input than visible if values are available

Resolved Bugs

  • Custom query update does not refresh definition.

Read full post