Core Components - Service, Query e Write api
Introduction
Below, we analyze the functionalities of the main Core Components (Core Service, Core Write, and Core Query).
The CoreService currently only handles routing to the Core Write or Core Query APIs. It does not implement any business logic but dynamically provides all routes for standard CRUD management regarding the entities present in the database.
On the other hand, CoreWrite and CoreQuery handle the more complex parts of the call flow, namely:
Verify that the calls have a valid Bearer Token. Check the grants for the requested operation (can the user read/write data on the table?). Validate the parameters sent in the query or body (based on the type of call: GET, POST, PUT, or DELETE). Ensure consistency between the sent source* and the DIM. Below are two diagrams illustrating the routing process of the CoreService and the Request/Response flow of the Core APIs.
Schema routing - CoreServiceApi Component

Validation schema - CoreQueryApi/CoreWriteApi Components
