Guest User

Untitled

a guest
May 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. # Executes one query
  2. User.all(
  3. User.user_relationships.peer_id => user_id,
  4. User.user_relationships.status => peer_status
  5. )
  6.  
  7. # Executes a shitload of queries, technically speaking
  8. User.all(
  9. :fields=> [:id,:first_name,:last_name,:full_name],
  10. User.user_relationships.peer_id => user_id,
  11. User.user_relationships.status => peer_status
  12. )
Add Comment
Please, Sign In to add comment