Hello,
I've created a test application to expose this issue, which I have shared for tech support (it is named "delete-bug").
The issue is the following:
I create a decision box for my application, and submit it as FALSE into the database. I then run a script to delete the decision box, but it only deletes data if the decision box was marked TRUE.
The code is as follows:
- delete from decision_box_form[ Box1 ];
The only way to get this to work is to compose:
-
delete from decision_box_form[ Box1 == false ];
delete from decision_box_form[ Box1 == true ];
thus doubling the amount of deluge statements that have to be run. Please fix!
Best,
Andrew