Member Junction
    Preparing search index...

    Interface FieldRuleLookup

    An entity lookup: find a record where MatchField === (computed) MatchValue, return ReturnField.

    interface FieldRuleLookup {
        Default?: unknown;
        Entity: string;
        MatchField: string;
        MatchValue: FieldRuleValueSource;
        ReturnField: string;
    }
    Index

    Properties

    Default?: unknown

    Value to use when no record matches.

    Entity: string

    Entity to look in (e.g. 'Accounts').

    MatchField: string

    Field on the lookup entity to match against.

    How to compute the value to match (static / field / formula).

    ReturnField: string

    Field to return from the matched record.