Hi, I am trying to POST to a REST service, using the Mendix RestServices module. When I am trying to serialize my object, it seems the relations are not serialized. I only see the attributes in the result. The relations have the value null In the debugger, i do see the following line: No RestService has been definied for type: MyFirstModule.fields_data, identifier could not be serialized Am i missing something? Thanks, Rogier
asked
Forgotten User N9IGgty53B
1 answers
0
Hi Rogier,
Associations will be serialized in two cases:
If the reference points to a non-persistent object
if the reference points to a persistent object for which a data service definition is created.
Doing either one of these options should solve the issue. 'Normal' references are not serialized by default to mitigate the risk that you accidentally publish (almost all) your data for example after making domain model changes.