Train utterance to go to particular node in intent

Is there an approach that i can follow to train utterance to specifically invoke a particular entity node in an intent

@baguntur No this is not possible. For any utterance, if a match is found, and intent gets triggered. Based on the configured flow, rest of the nodes get triggered. No node separately can be invoked.
We are not sure what is your exact use case here. If you elaborate we may be able to help you out.

There are two potential approaches you can use to guide a dialog flow to a particular entity given some initial utterance.

One is to use a trait and within the dialog use a transition that checks for the presence of that trait to decide where to go.

The second is to have another intent with just the specific training for your situation. Then in that second dialog, call the first one but pass a flag along that indicates the scenario which that main dialog can use in its transitions.

Thank you. That worked!