I have an entity type with three fields: FieldA, FieldB and FieldC. FieldA and FieldB have the type "Entity". They link to another entity with two fields. FieldC is a string which I need to automatic concatenate FieldA and FieldB. I use this formula.
v1(data, context) { return data.FieldA + " - " + data.FieldB; }
This works as intended, but since the fields are entities, it only returns the EntityId. I now need to get the fields inside the entity, such as data.FieldA.thisCatField. Is this possible?