Conditional branching

The Conditional Branching node is to create different subsequent dialogs based on various parameters and conditions written in JavaScript.

You can create multiple conditions. For each condition, you need to write body of a function which takes user as parameter and returns true or false. Below is the format of function.

function(user) {
    //your logic goes here
    return true;
}

You need to write only body of the function(Please do not write signature of function). To refer to the complete user object with all of the fields please check go to this link.

Last updated

Was this helpful?