Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
I want to access particular forms from particular app.
for example: select tableName from app_form;
above querry giving all the table name from app but I want only particular table names from particular app.
above query is giving me all the table name.
example: if I created app [ app name: DIGITAL ] then I want to fetch only table names coming under DIGITAL app
Change the app name in where clause to which ever app you are trying to access
SELECT *FROM app_form WHERE appId = 'appcenter'
I want to access particular forms from particular app.
for example: select tableName from app_form;
above querry giving all the table name from app but I want only particular table names from particular app.
above query is giving me all the table name.
example: if I created app [ app name: DIGITAL ] then I want to fetch only table names coming under DIGITAL app