Skip to content

Instantly share code, notes, and snippets.

@skarger
Last active June 20, 2019 22:31
Show Gist options
  • Select an option

  • Save skarger/a86c605930244f89471ae62b9733a0a2 to your computer and use it in GitHub Desktop.

Select an option

Save skarger/a86c605930244f89471ae62b9733a0a2 to your computer and use it in GitHub Desktop.
# 1 query to get all 3 sports
sports = Sport.all
# N == 3 queries to get each sport's workouts
sports.each do |sport|
puts sport.name
puts sport.workouts.pluck(:notes).join("\n")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment