Expand everything in ODATA

Viewed 12

I want to either $expand or $select everything there is to expand or select, (including or excluding, preferably including related entities, but if related entities are included then do not expand and select all of them recursively because this will lead to a very large JSON obviously)

So if entity a is expandable with a,b,c, instead of doing $expand=a,b,c, I need something like $expand=* or $expand=all that will return a,b and c.

I need this because I am working with undocumented APIs and so I can't specifically state what files I want to expand because I don't know what are my options.

0 Answers
Related