Easy question, how can I check for not null values in an utterance template?
# favorite dish is empty
* choose{"favorite_dish": null}
- utter_choose_again
# let's go with next question
* choose{"favorite_dish": not_null}
- utter_choose_favorite_restaurant
The null
works fine, but I can’t find the expected synthax for a not null check.
I’d like to prevent setting two variables (favorite_dish
, favorite_dish_is_set
: bool) every time.