Closed annakristinkaufmann closed 2 years ago
The current behaviour of forge.update() is as follows:
forge.update()
Example resource with a nested property:
resource = forge.from_json({ "outer": { "inner": "test" } }) forge.register(resource)
Updating the inner property throws a resource should not be synchronized UpdatingError:
resource should not be synchronized
UpdatingError
resource.outer.inner = "updated" forge.update(resource)
While the following works fine:
resource.outer = resource.outer forge.update(resource)
The current behaviour of
forge.update()
is as follows:Example resource with a nested property:
Updating the inner property throws a
resource should not be synchronized
UpdatingError
:While the following works fine: