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 a 3rd property wants to reactively depend on Book.ownerName, how do we expand the "owner" reactive hint into the correct reactive hint?
Specifically b/c owner's reactive hint may need the new "name" extension added to multiple places (for Author.name or Publisher.name) which may or may not be leaf properties in the hint.
Also, at runtime we only know that we need to add a "name" hint somewhere within the owner hint; we currently don't know that owner only returns Author | Publisher, to at least look for the subset of hint locations that match those entity types.
The text was updated successfully, but these errors were encountered:
Given a non-persisted async property like
Book.owner
:And another reactive async property like
Book.ownerName
:When a 3rd property wants to reactively depend on
Book.ownerName
, how do we expand the "owner" reactive hint into the correct reactive hint?Specifically b/c
owner
's reactive hint may need the new"name"
extension added to multiple places (forAuthor.name
orPublisher.name
) which may or may not be leaf properties in the hint.Also, at runtime we only know that we need to add a
"name"
hint somewhere within theowner
hint; we currently don't know thatowner
only returnsAuthor | Publisher
, to at least look for the subset of hint locations that match those entity types.The text was updated successfully, but these errors were encountered: