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, 4 insertions, 0 deletions
diff --git a/app/graphql/types/todo_type.rb b/app/graphql/types/todo_type.rb
index f21b2b261a3..0de6b1d6f8a 100644
--- a/app/graphql/types/todo_type.rb
+++ b/app/graphql/types/todo_type.rb
@@ -53,6 +53,10 @@ module Types
description: 'Timestamp this to-do item was created.',
null: false
+ field :note, Types::Notes::NoteType,
+ description: 'Note which created this to-do item.',
+ null: true
+
def project
Gitlab::Graphql::Loaders::BatchModelLoader.new(Project, object.project_id).find
end