Skip to content

Dataflow

joschne edited this page Jun 6, 2024 · 2 revisions

This page describes the data flow between the layers of the toolbox stack.

Each flow starts with an initial action that triggers a sequence of communications between the layers, and it ends with the last element of this sequence.

Create project data

sequenceDiagram
    autonumber
    participant UI as Angular UI
    participant API as Loopback
    participant DB as Postgres DB

    UI->>+API: HTTP req: /project-data/upsert-data
    loop 
    API->>+DB: SQL upsert 
    DB->>API: Returns JSON 
    API->>DB: SQL upsert 
    DB->>-API: Returns JSON 
    end
    API->>-UI: HTTP res: GvSchemaModifier
Loading
Clone this wiki locally