summaryrefslogtreecommitdiff
path: root/app/graphql/types/todo_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/todo_type.rb')
-rw-r--r--app/graphql/types/todo_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/todo_type.rb b/app/graphql/types/todo_type.rb
index 3b983060de2..24c110ce09b 100644
--- a/app/graphql/types/todo_type.rb
+++ b/app/graphql/types/todo_type.rb
@@ -9,7 +9,7 @@ module Types
authorize :read_todo
- field :id, GraphQL::ID_TYPE,
+ field :id, GraphQL::Types::ID,
description: 'ID of the to-do item.',
null: false
@@ -35,7 +35,7 @@ module Types
description: 'Target type of the to-do item.',
null: false
- field :body, GraphQL::STRING_TYPE,
+ field :body, GraphQL::Types::String,
description: 'Body of the to-do item.',
null: false,
calls_gitaly: true # TODO This is only true when `target_type` is `Commit`. See https://gitlab.com/gitlab-org/gitlab/issues/34757#note_234752665