Hi All,
I have a use case in which I want to either create rows or update rows or do both operations simultaneously on table. After I am done with this I want to save the data into my DB. Right now, I am using post and patch APIs which are running in parallel to do my use case but that's not the right way to do it because if user didn't update the rows or create the rows, Both APIs will run and one of them throws the Error only if one operation is performed.
I am trying to use batch requests method to solve this problem but not able to find a way in VBCS.
Referred to this VBCS cookbook blog: https://vbcookbook.oracle.com/?page=shell&shell=batch-editable-table&batch-editable-table=batch-editable-table-start&batch-editable-table-start=recipe
but it doesn't really help me to overcome the issue.
@shay-shmeltzer-oracle