How to get from object in data view if database is non persistent (in Native mobile) ?

0
I have created one database that is non-pesistable. But I want data in dataview from that. At first I am calling REST API to get the data. BuI want those data in data view, for that I need to use that non persistable table to get the data. How to get it? Please help me out, it’s urgent.
asked
1 answers
1

If you are getting one record with the rest call then set the microflow that performs the rest call as the datasource for the dataview and make sure the microflow returns the object that is expected for the dataview.

Another option could be to persist the data either by making the current entity persistable or after getting the data in the non-persistent entity copying the data in a persistent entity and display that record in the page containing the dataview.

Hope this helps in finding a solution

answered