summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/todos/mark_done.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/mutations/todos/mark_done.rb')
-rw-r--r--app/graphql/mutations/todos/mark_done.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/graphql/mutations/todos/mark_done.rb b/app/graphql/mutations/todos/mark_done.rb
index 748e02d8782..3d73022f266 100644
--- a/app/graphql/mutations/todos/mark_done.rb
+++ b/app/graphql/mutations/todos/mark_done.rb
@@ -8,7 +8,7 @@ module Mutations
authorize :update_todo
argument :id,
- GraphQL::ID_TYPE,
+ ::Types::GlobalIDType[::Todo],
required: true,
description: 'The global id of the todo to mark as done'