Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow select(nil) #78

Closed
vladfaust opened this issue Mar 6, 2019 · 0 comments
Closed

Allow select(nil) #78

vladfaust opened this issue Mar 6, 2019 · 0 comments
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@vladfaust
Copy link
Member

vladfaust commented Mar 6, 2019

posts = Onyx.query(Post
  .select(nil)
  .join(:author) do |x|
    x.select(:name)
    x.where(id: 1)
  end
)
SELECT author.name
FROM posts
JOIN users AS author ON users.id = posts.author_id
WHERE author.id = ?
@vladfaust vladfaust added the enhancement New feature or request label Mar 6, 2019
@vladfaust vladfaust self-assigned this Mar 6, 2019
@vladfaust vladfaust added this to the next minor milestone Mar 9, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant