Hello. I am collecting some slots through Alexa in a CollectIntent:
'AMAZON.CollectIntent': function () { if (this.event.request.dialogState !== 'COMPLETED') { this.emit(':delegate'); } else { ... } },
And everything works finde. I can use these slots, do some stuff with them, but when I ask the user if he wants to restart and the/she says yes it doesn't work anymore. I would like to send them back to CollectIntent to restart:
'AMAZON.YesIntent': function () { this.emit('CollectIntent'); },
I would like to know if there is a way to restart a dialog directive (or empty all slots and restart) so that Alexa can collect these slots again? How could I achieve this?