summaryrefslogtreecommitdiff
path: root/app/graphql/functions/echo.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/functions/echo.rb')
-rw-r--r--app/graphql/functions/echo.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/graphql/functions/echo.rb b/app/graphql/functions/echo.rb
new file mode 100644
index 00000000000..e5bf109b8d7
--- /dev/null
+++ b/app/graphql/functions/echo.rb
@@ -0,0 +1,13 @@
+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