I am trying to create path logic using an arcade expression to take a specific answer from an extended property table.
I have tried:
jobExtendedProperty($job,'report_qc_revision','qcpassfail')=="True"
jobExtendedProperty($job,'report_qc_revision','qcpassfail')=='0'
jobExtendedProperty($job,'report_qc_revision','qcpassfail')==0
where the qcpassfail field is a Boolean. They all end up with "No paths match return code". I want to avoid a "Question" step as there are multiple fields for the qc step prior to moving to next step.
The other path logic I require that is failing is where there are 3 options (possibly more in future) that split the workflow. I have tried using a domain and using the same path logic as above, trying to use both the domain code (an integer) and the text value of the domain.
Where am I going wrong?!