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
src/Main.hx:12: characters 13-22 : error: { User : Table0_Result, Post : Table1_Result } has no field id
src/Main.hx:12: characters 13-22 : have: tink.sql.Field<..., { id }>
src/Main.hx:12: characters 13-22 : want: tink.sql.Field<..., { User, Post }>
src/Main.hx:12: characters 13-22 : For function argument 'orderBy'
This is basically just a typing issue caused by the wrong Owner in Field. With cast f.User.id it runs fine at runtime because it is merely an Expr
The text was updated successfully, but these errors were encountered:
errors with
This is basically just a typing issue caused by the wrong
Owner
inField
. Withcast f.User.id
it runs fine at runtime because it is merely anExpr
The text was updated successfully, but these errors were encountered: