diff --git a/doc/api/graphql/reference/index.md b/doc/api/graphql/reference/index.md
index 5eb202b97bd82a262c0d85b8354d0bf685a4154d..dae84988792e5a00a2af83f0943297498adeeb98 100644
--- a/doc/api/graphql/reference/index.md
+++ b/doc/api/graphql/reference/index.md
@@ -21226,7 +21226,7 @@ Contains release-related statistics about a group.
 | Name | Type | Description |
 | ---- | ---- | ----------- |
 | <a id="groupsavedreplycontent"></a>`content` | [`String!`](#string) | Content of the saved reply. |
-| <a id="groupsavedreplyid"></a>`id` | [`GroupsSavedReplyID!`](#groupssavedreplyid) | Global ID of the group saved reply. |
+| <a id="groupsavedreplyid"></a>`id` | [`GroupsSavedReplyID!`](#groupssavedreplyid) | Global ID of the group-level saved reply. |
 | <a id="groupsavedreplyname"></a>`name` | [`String!`](#string) | Name of the saved reply. |
 
 ### `GroupSecurityPolicySource`
diff --git a/ee/app/graphql/types/groups/saved_reply_type.rb b/ee/app/graphql/types/groups/saved_reply_type.rb
index 3fdc23d0dca1a854fd82d39d29f08bbe09954912..d19e26d40d16896f2cfb3e8eb3e1d361d88911bc 100644
--- a/ee/app/graphql/types/groups/saved_reply_type.rb
+++ b/ee/app/graphql/types/groups/saved_reply_type.rb
@@ -9,7 +9,7 @@ class SavedReplyType < ::Types::SavedReplyType
 
       field :id, Types::GlobalIDType[::Groups::SavedReply],
         null: false,
-        description: 'Global ID of the group saved reply.'
+        description: 'Global ID of the group-level saved reply.'
     end
   end
 end