Can I use update() instead of delete() in a createrefund function?
Is it okay to use order.objects.filter.().update() in a create_refund function that I am trying to refactor that says order.objects.filter().delete()? So what I am asking is can I use update() instead of delete(). It causing an issue for a create_refund() function. I cannot use order.objects.get().delete() because there is a lot of arguments.