Use FlowEQ to retrieve field data from an object linked to the current Salesforce object
floweq.salesforcePath
— this first section tells FlowEQ to treat the rest of the variable as a path variable. This is the same for all path variables.
OBJECT
— This is the API Name for the current object. This tells FlowEQ what object type you are on and where to start.
CHILD_OBJECT
— This is the API Name for the child object. This tells FlowEQ the child object you want to retrieve data from. This is the object that is linked to the first object.
FIELD
— This is the Field Name for the object you want to retrieve data from. This is the field you want to get data from on the child object.
OBJECT
or CHILD_OBJECT
is a custom object, the API Name will usually show as ending with a __c
. We’ve seen some situations where the API Name for the object needs to be changed in FlowEQ from __c
to __r
. This is due to how Salesforce handles custom objects.FirstName
field from the Contact
object linked to the currently Case
object is as follows:
EndDate
custom field from the Contracts
custom object linked to the Contact
object linked to the currently Case
object, you would use the following syntax: