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
When using get and set methods in a Document, the Proxy correctly intercepts the call, but then any gets/sets done within the intercepted get/set is not intercepted by the Proxy.
Calling user.fullName returns the string representation of the String object, which is the schema definition, and not the actual values of firstName and lastName.
The text was updated successfully, but these errors were encountered:
When using
get
andset
methods in aDocument
, the Proxy correctly intercepts the call, but then any gets/sets done within the intercepted get/set is not intercepted by the Proxy.Example:
Calling
user.fullName
returns the string representation of theString
object, which is the schema definition, and not the actual values offirstName
andlastName
.The text was updated successfully, but these errors were encountered: