Hi,
We have a requirement to retrieve an entity (for example, account) and it its associated contacts with its details, then each contact has lookup field that I need to extract the details too (e.g. contactMethod)
For the first call with account, I'm using $expand to contacts, but it seems it is not possible to call another $expand for the lookup of each contact as multiple $expand isn't supported.
Is there an optimal way to retrieve all these information using a single call in Web API?
Currently, I'm looping a call for each contact on the account entity and the performance is not good.
Please advise.