REST expose, list inside of returned object

1
I am trying to expose a list of objects inside of another list of objects. I have a list of "A1" and inside of object A1 I need to associate a list of object B1, but can only associate the object itself, not the list. EX. A1= Employee positions B1= list of employees for position Managers(A1) return all employees(B1) that are Managers. All i can get to return is the last item in the list, when i make my REST call
asked
3 answers
0

To use a list you'll need a many-to-many relationship from Claim to CheckInformation. That should do the trick!

answered
0

Not sure if it is the same issue:

https://forum.mendix.com/questions/8798/POST-restservice-with-collection-instead-of-a-single-object

answered
0

Eric, Here is a snippet of the domain model, please excuse the ridiculously large claim entity.

alt text

answered