Skip to content

Instantly share code, notes, and snippets.

@msroot
Created April 24, 2020 15:16
Show Gist options
  • Save msroot/223779212da268c98b2c33dd2eed1e6b to your computer and use it in GitHub Desktop.
Save msroot/223779212da268c98b2c33dd2eed1e6b to your computer and use it in GitHub Desktop.
module Resolvers
class UsersResolver < Resolvers::BaseSearchResolver
type Types::UserType.connection_type, null: false
scope { context[:current_user].admin? ? User.all : User.none }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment