You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider the case where we have two versions of metadata for foo: 1.0 and 2.0
In version 1.0 we have an array field, bars, that exists on foo. The generated field bars# is updated as we add and remove items from that array.
In version 2.0 we have moved the field bars to an association. So foo and bar are now their own entities, with foo having an association field now to bar.
If we update bar entities, adding and removing them through bar metadata, and then access the foo 1.0 metadata, the bar# field will now be inaccurate, because it was not aware of any changes, since the changes were not executed through foo.
The text was updated successfully, but these errors were encountered:
Consider the case where we have two versions of metadata for
foo
: 1.0 and 2.0In version 1.0 we have an array field,
bars
, that exists onfoo
. The generated fieldbars#
is updated as we add and remove items from that array.In version 2.0 we have moved the field
bars
to an association. Sofoo
andbar
are now their own entities, withfoo
having an association field now tobar
.If we update
bar
entities, adding and removing them throughbar
metadata, and then access thefoo
1.0 metadata, thebar#
field will now be inaccurate, because it was not aware of any changes, since the changes were not executed throughfoo
.The text was updated successfully, but these errors were encountered: