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 referencing a relationship defined as a "belongsToThrough", it throws an error that there is no accessible member with name "LocalKeys".
The error refers to line 296 in quick/models/Relationships/BelongsToThrough.cfc
var key = variables.localKeys
variables.localKeys is not defined in this component.
I attempted to swap in getLocalKeys() (i.e. var key = variables.getLocalKeys() ) and while the error went away, the relationship is not being properly navigated.
General application error: Component [quick.models.Relationships.BelongsToThrough] has no accessible Member with name [LOCALKEYS]
When referencing a relationship defined as a "belongsToThrough", it throws an error that there is no accessible member with name "LocalKeys".
The error refers to line 296 in quick/models/Relationships/BelongsToThrough.cfc
variables.localKeys
is not defined in this component.I attempted to swap in
getLocalKeys()
(i.e.var key = variables.getLocalKeys()
) and while the error went away, the relationship is not being properly navigated.The text was updated successfully, but these errors were encountered: