I'm creating a new interface object to display several pie charts. The data for the charts is stored in a local variables in the parent interface object which references my children interfaces. In terms of performance, what is the most efficient method to access the data required for the pie charts? Create a rule input on the children interfaces and pass the local variables data from the parent interface or query the data separately in the child interface to avoid passing it from the parent interface?
Discussion posts and replies are publicly visible
If each pie chart requires a completely different dataset you can query in child interface otherwise I would suggest to create a rule input on the child interface and pass the local variable data from the parent interface.
if you are using records appian suggests you to directly use records as source.