summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/notes/base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/mutations/notes/base.rb')
-rw-r--r--app/graphql/mutations/notes/base.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/graphql/mutations/notes/base.rb b/app/graphql/mutations/notes/base.rb
index d6c8121eee7..65bb9e4644c 100644
--- a/app/graphql/mutations/notes/base.rb
+++ b/app/graphql/mutations/notes/base.rb
@@ -3,6 +3,12 @@
module Mutations
module Notes
class Base < BaseMutation
+ QUICK_ACTION_ONLY_WARNING = <<~NB
+ If the body of the Note contains only quick actions,
+ the Note will be destroyed during an update, and no Note will be
+ returned.
+ NB
+
field :note,
Types::Notes::NoteType,
null: true,