This seems to work: ``` client.execute("UP...
# spring
r
This seems to work:
Copy code
client.execute("UPDATE .....")
            .bind(...).fetch().rowsUpdated()
            .then(
                client.execute("UPDATE ......").bind(...).fetch().rowsUpdated()
            ).then().`as`(operator::transactional).awaitSingle()
Is this correct way?