assuming this call const result = await store.$db().model(model).jsonApi().update(id, obj) produces a PATCH request with an object that returns a data object with several included objects.
the result variable will only contain a shallow representation of the call (namely the basic model in the example with its attributes)
ideally the update method returns a proper vuex orm structure with all the information that it just received from the api
assuming this call
const result = await store.$db().model(model).jsonApi().update(id, obj)produces aPATCHrequest with an object that returns adataobject with severalincludedobjects.the
resultvariable will only contain a shallow representation of the call (namely the basicmodelin the example with itsattributes)ideally the
updatemethod returns a proper vuex orm structure with all the information that it just received from the api