Skip to content

Instantly share code, notes, and snippets.

@paulcsmith
Last active July 31, 2018 13:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulcsmith/a12b669bcc252d5683f2c90dfd3447b8 to your computer and use it in GitHub Desktop.
Save paulcsmith/a12b669bcc252d5683f2c90dfd3447b8 to your computer and use it in GitHub Desktop.
class UserQuery < User::BaseQuery
def sort_by_name
name.lower.desc_order
end
def only_adults
age.gte(18) # gte -> greater than or equal to
age.not(nil)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment