I have two data types: Material and MaterialGroup.
MaterialGroup has a multi-cardinality reference to Material, and I’ve set up an external service that takes a list of Materials as input and returns a list of MaterialGroups that each have an array of Materials (using appfarm ID’s).
I want to generate MaterialGroups from a web request to my external service, and have the Materials connected in the multi-cardinality reference. Is there a way to do this using only the result parser?
My setup so far looks like this, but I have no clue what to do with the Materials* property (or if it’s even possible). Can I put comma separated ID’s there for example?