WriteConflict issue at MongoDB when concurrent hit on the endpoint

What does your server do for each of your requests? write conflict can mean like: a transaction A read Obj1 and then tries to write to Obj1, but between this read and write, Obj1 has been modified by another write operation. (based on my understanding of mongo)

related: How WriteConflict errors are managed in Transactions( MongoDB 4.2)