14 lines
386 B
Ruby
14 lines
386 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Resolvers
|
|
class EchoResolver < BaseResolver
|
|
argument :text, GraphQL::STRING_TYPE, required: true # rubocop:disable Graphql/Descriptions
|
|
description 'Testing endpoint to validate the API with'
|
|
|
|
def resolve(**args)
|
|
username = context[:current_user]&.username
|
|
|
|
"#{username.inspect} says: #{args[:text]}"
|
|
end
|
|
end
|
|
end
|