-
Notifications
You must be signed in to change notification settings - Fork 7
Closed
Labels
Milestone
Description
Post.first.select(Post).join(author: true) { |x| x.select(:name) }Currently the developer has to explicitly add .select(Post), otherwise the post isn't loaded. By it should be loaded by default unless explicitly called .select. However, .join can be called at any time, even before parent query .select, therefore some kind of @select_self : Bool = true variable should be introduced in the Query.
Reactions are currently unavailable