Using Dynamic Data
As a datasource
# Use the sqlite datasource with the dynamic data provider.
type: "datasource.sqlite"
options:
provider: DATA_PROVIDER_DYNAMIC
entities:
- entity: default/employee
# Write sqlite query syntax to return data needed in the jig/solution.
query: |
SELECT
id,
'$.firstname',
'$.lastname',
'$.photo',
'$.birthdate',
'$.gender',
'$.email',
'$.phone',
'$.street',
'$.city',
'$.state',
'$.country',
'$.category',
'$.modify'
FROM [default/employees] WHERE '$.category' = "employee-detail"In components
In actions
Examples and code snippets
Last updated
Was this helpful?