As far as I can see, I am not able to manipulate and output Collections in formulae. They seem to always have to be converted into strings with a Join()
function? I would like to calculate connections through a formula rather than an Automation:
So I am modelling my component library in Fibery. It consists of:
- Products (e.g. Mobile App, Web App, etc.)
- View Templates (e.g. Mobile Base, Mobile Login, etc.), which belong to a Product
- Views (e.g. Login, Dashboard, etc.) using a View Template
- Components (e.g. Navigation, Listing, List Item) which can be nested
A Component can be placed inside another Component, a View or a View Template. I would like a Component to display in which Products it is used, hence a formula that does kinda the following (pseudocode):
Products = [View Templates].Products + [Views].[View Templates].Products
Products += [Parent Components].Products // Note: yeah, simplified the nesting recursion here
Products.FilterUnique()
Is there any plans adding Collection manipulation in formulae?
Thanks!
Edit: Automation actually cannot solve my problem either.