Create & edit Data Service
Create a Data Service
To create a Data Service, follow these steps:
In your ReOrc project, go to Data Service.
Click on the + icon and select Create data service.
Provide the name for your Data Service.
Click Create.

Define SQL query
Click Edit query to define/ edit SQL query of the Data Service.
In the query editor, define connection for your Data Service.
Input your SQL query.

For example:
SELECT
o.id AS order_id,
c.name AS customer_name,
o.order_total
FROM
database_name.table_name o
JOIN
database_name.table_name c ON o.customer = c.id
WHERE
o.order_status = 'completed';
Click Update > Save to confirm the changes.
View the query output in the Data Preview tab.

Organize Data Services
To create a new folder, click on the action button of an existing folder and select Add sub-folder:

To move a Data Service into the new folder, click on the action button of the Data Service and select Move to. Then select the target folder from the list.

Last updated