summaryrefslogtreecommitdiff
path: root/app/graphql/resolvers/echo_resolver.rb
blob: 6b85b700712561d3dccdb12cca7d77cfa9e20168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Resolvers
  class EchoResolver < BaseResolver
    type ::GraphQL::STRING_TYPE, null: false
    description 'Testing endpoint to validate the API with'

    argument    :text, GraphQL::STRING_TYPE, required: true,
                description: 'Text to echo back'

    def resolve(text:)
      username = current_user&.username

      "#{username.inspect} says: #{text}"
    end
  end
end