You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, the interview order is just a list of strings. But ultimately in the output YAML, the author is going to add conditional logic to some screens. A list of strings doesn't work as well there.
Propose a simple tree structure:
["variable1", {"condition": "if x == 1", "children": ["variable2", "variable3"]}, "variable4"]
The text was updated successfully, but these errors were encountered:
Right now, the interview order is just a list of strings. But ultimately in the output YAML, the author is going to add conditional logic to some screens. A list of strings doesn't work as well there.
Propose a simple tree structure:
["variable1", {"condition": "if x == 1", "children": ["variable2", "variable3"]}, "variable4"]
The text was updated successfully, but these errors were encountered: