Refer to the exhibits. In the choice router, the When expression for the domestic shipping route is set
to "#[payload= "FR"]".
What is the output of logger after the execution of choice router is completed?
"Domestic"
"International"
"US"
A dataweave syntax error
(Correct)
D
Explanation:
To compare, DataWeave syntax is #[payload == "FR"]. In this case only one = is used so it will give
syntax error.
If payload = FR --> syntax error | if payload == FR --> International