47b3038434
Partially addresses #47424.
15 lines
322 B
Ruby
15 lines
322 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|