Form values change after submission, used in subsequent queries

  • Goal: I have a form with data being processed in three subsequent queries after success of each. The form has a radio button with two options in it and is set to "reset after successful submit"

The first one processes two input text fields, after success the second one creates an insert into a db with the value of the radio button.

However, in that second step, the query retrieves not the previous selected radio option, but somehow a meanwhile (during query1 i guess) resetted value.

If i disable "rest after successful submission", the correct radio button option is being used.

Is this the desired behaviour, that data of a form changes during execution of queries, chained together?