2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
module Functions
|
|
|
|
class Echo < BaseFunction
|
|
|
|
argument :text, GraphQL::STRING_TYPE
|
|
|
|
|
|
|
|
description "Testing endpoint to validate the API with"
|
|
|
|
|
|
|
|
def call(obj, args, ctx)
|
|
|
|
username = ctx[:current_user]&.username
|
|
|
|
|
|
|
|
"#{username.inspect} says: #{args[:text]}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|