error with native mobile app

0
I am making a native mobile application where I have to consume a service of some pharmaceutical products that the search by the name of the product finds the product the application must serve both on a web page and in a native mobile application, I have already been able to do it on the web page and it works correctly, but I have not been able to implement this same thing for my application, I tried to call the microflow that consumes the service to a nanoflow and then display it on a page just like I do on the web page but I have not been able to implement it because when I do it tells me that it is not possible to use a non-persistent entity in the list view or in the data view that I put on the page of the mobile app. How can I make it work in the same way as it does on the web page to the mobile app? Help please?  This is the microflow I use to call the service for the products. I have verified it on the website and it works correctly. I use this nanoflow to call the microflow and have it show up on the native mobile app page. But as you can see, it doesn't allow me to do it the same way as on the website, so I get an error. Any idea on how to do it or if I need to implement something else?
asked
2 answers
1

You try to get a list of non persistent items by a datasource call. This is not possible, as non persistent items cannot be in the database. As already described, use the association without a database query or use a datasource nanoflow.

answered
0

Use a datasource nanoflow in your native page to retrieve the list

answered