I'm running a SOQL query in a Salesforce Input step which retrieves an object value:
On the Fields tab setting the field to Project_Checklist_Item__r.Project__r.ID returns null (it's non-null when I run the query in SF Workbench). What do I need to do to get the value?
Code:
SELECT Project_Checklist_Item__r.Project__r.ID
FROM Project_Checklist_Item_Phase__c
WHERE ID IN ('a03R0000009BwZ8IAK')