https://discord.gg/botpress logo
i'm not sure what's the easiest way but what i us...
# 🌎general
a
i'm not sure what's the easiest way but what i usually do is save the values of the obtained record in individual variables through an execute code like this:
Copy code
js
workflow.firstName = workflow.obtainedRecord['first']
workflow.lastName = workflow.obtainedRecord['second']
in this code you save the value of the column 'first' and 'second' from your obtained record in those new variables that you must create in your bot
2 Views