Okay. This is going to get a bit long.
My goal here is to set 2 parameters to the same value with one-time user input. Having explored CX docs thoroughly, I think my best bet is to go ahead with Composite Entity. So I have created the following:
Entity Type: A
Entity Type: B (pretty much the exact same thing as A)
And I have the Composite Entity Type C which holds A & B:
And here is where I configure my page with intent route ABC which only capture
C
This is the result of trying out the simulator:
What I expect is for both "A_param" and "B_param" to be set to "A" and "B" since the input matches both entities. But instead, what we got is only entity B matches, and A is entirely skipped.
What we get:
c_param: {"B_param": "B", "original": "test"}
Expectations:
c_param: {"A_param": "A", "B_param": "B", "original": "test"}
Can someone help me out please ! (Thank you in advance),
Paris