Hi Team, I want to store json data into mendix database. or can we store json data into list format and return that list using microflow on the page. please help. What value I should pass as Input
asked
Priyanka Awari
1 answers
0
It will depend what you want to do with it..
Just store the JSON as is: then just store it as a String attribute
Actually map the JSON data to your domain model: then you need to have entities with attributes that correspond to what is in the JSON (e.g. a Client with a name, an association with a list of Orders, ...), and you map the JSON data using an import mapping and JSON snippet (import mapping based on the JSON snippet into your domain model).