In a table A that has a list of objects B, is it possible to append an object?
The alternative would be to retrieve the list, add an object to it, and upload the modified list.
The problem with this solution is that the local object A could become stale between the GET and the PATCH. Making the whole system inconsistent.
In a table A that has a list of objects B, is it possible to append an object? The alternative would be to retrieve the list, add an object to it, and upload the modified list. The problem with this solution is that the local object A could become stale between the GET and the PATCH. Making the whole system inconsistent.