Issue passing a reference as a subflow outputDescriptionNot possible to assign user to incident record from inbound email flowSteps to Reproduce The steps to reproduce are as follows:1. Create a subflow, and in it:- 1. Add a subflow input of type "Reference.Email"- 2. Add a subflow output of type "Reference.User"- 3. In actions, add the flow logic "Assign Subflow Outputs", and assign the subflow output by selecting a user from the dropdown list- 4. Save and Publish the subflow2. Create a flow, and in it:- 1. Add the trigger "Inbound Email"- 2. In actions, add the subflow, and in it:- - 1. For the subflow input, drag the "Email Record" Trigger pill from the data panel on the right onto it- 3. Add a "Log" action, and in it:- - 1. Click the script icon to add a script- - 2. In the script, add a line "return fd_data.<sys_name_of_subflow>.<sys_name_of_subflow_output>;"- 4. Add another "Log" action, and in it:- - 1. Click the script icon to add a script- - 2. In the script, add a line "return fd_data.<sys_name_of_subflow>.<sys_name_of_subflow_output>.sys_id;"3. Run a test with any email record4. Open the execution Notice the runtime values for both Log actions to return both the user record, and the user id (for the 1st and 2nd Log actions, respectively). WorkaroundInstead of passing a reference out of the subflow, pass the sys_id as a stringRelated Problem: PRB1451922