Persistable entity in Native mobile

0
Hi, In a native mobile application, I am getting a persistable entity related error as shown in the image. Can anyone suggest possible solutions.   Thanks!
asked
1 answers
3

You can only pass non-persistent entities or primitive values from a nanoflow to a microflow. That means that instead of the object itself, you can pass an ID to the microflow and retrieve the object based on that ID on the server. Perform your logic and changes in the microflow and then synchronize the object to the device using the 'sync to device' activity.

answered