Currently we only validate a Node on construction, but not if a field is assigned. For `validator`s this can be enabled in pydantic's config by setting ``` validate_assignment = True ``` However it seems this doesn't apply to `root_validator`s. Bug in pydantic?
Currently we only validate a Node on construction, but not if a field is assigned.
For
validators this can be enabled in pydantic's config by settingHowever it seems this doesn't apply to
root_validators. Bug in pydantic?