summaryrefslogtreecommitdiff
path: root/app/graphql/resolvers/users/participants_resolver.rb
blob: 9e87b60fa34ebc94906cf13aea25c17e0107b1c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Resolvers
  module Users
    class ParticipantsResolver < BaseResolver
      type Types::UserType.connection_type, null: true

      def resolve(**args)
        object.visible_participants(current_user)
      end
    end
  end
end