debian-mirror-gitlab/app/graphql/resolvers/echo_resolver.rb
2021-04-29 21:17:54 +05:30

20 lines
452 B
Ruby

# 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,
type: GraphQL::STRING_TYPE,
required: true,
description: 'Text to echo back.'
def resolve(text:)
username = current_user&.username
"#{username.inspect} says: #{text}"
end
end
end