19 lines
456 B
Ruby
19 lines
456 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Resolvers
|
|
class EchoResolver < BaseResolver
|
|
type ::GraphQL::Types::String, null: false
|
|
description 'Testing endpoint to validate the API with'
|
|
|
|
argument :text,
|
|
type: GraphQL::Types::String,
|
|
required: true,
|
|
description: 'Text to echo back.'
|
|
|
|
def resolve(text:)
|
|
username = current_user&.username
|
|
|
|
"#{username.inspect} says: #{text}"
|
|
end
|
|
end
|
|
end
|