Is it possible to have a selector in the map property? For instance, I have records in my data with a nested array of objects, but for each record, that array does not always have the same amount of entries (e.g. first record has three items in the array, second item has five, etc.). If I access each array element by index, I may not always get the same type of object at the same index.
Instead of setting up a map like this
MyArray>1>MyValue
it would be much easier to be able to do this:
MyArray>[ObjType=’Foo’]>Value
This would cut out all the empty elements I am now serializing on the server simply to ensure I have the same number of elements in each array in each record.