I have a following type canvas application made for writing and saving information for financial analysis.
Users can select an organization they are representing.
After selecting an organization they can select a section of analysis they want to fill. One section can have up to 6 different questions, which can be answered via TextInput components.
The user can write to one or multiple textboxes and click "save" which launches a Patch function to save the information to dataverse table. If a row for this organization and analysis section already exists, the function will update this row, if it doesn't the function will create another row.
There is a possibility that two users are editing two different questions of a same section from a same organization at the same time and I would like to ensure, that both of their edits end up to Dataverse. Is it possible to include a check for the Patch function to see if the specific row has been recently edited, or is it possible to see if another user is currently editing the same textinput?