Is it possible to define a dynamic typed list field that rolls up data into a comma-delimited field?
For example, say you have this hypothetical dataset:
VEG Vegetables
CEL Celery
PTO Potato
FRU Fruits
APL Apple
BAN Banana
ORG Orange
PIN Pineapple
Suppose I wish to return a dynamic typed list containing a list of food types (vegetables, fruits) with a column containing the list of ID's for related sub-entities in a comma delimited list. An output would be like this:
VEG Vegetables CEL,PTO
FRU Fruits APL,BAN,ORG,PIN
Is there any way to do this? Otherwise, how would one go about creating a typed list and returning multiple related entities? Thanks for your thoughts. Sorry for the lame hypothetical dataset...I'm really hungry.