File tree 1 file changed +9
-4
lines changed
packages/api-headless-cms/src/graphql/schema 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -106,12 +106,17 @@ const createSchema = (plugins: PluginsContainer): GraphQLSchemaPlugin<CmsContext
106
106
}
107
107
108
108
input CmsPublishEntryOptionsInput {
109
- # By default, updatePublishedOn is true. User can set it to false to skip the publishedOn field update.
109
+ """
110
+ By default, updatePublishedOn is true. User can set it to false to skip the publishedOn field update.
111
+ Note that this input field is deprecated and will be removed in one of future releases.
112
+ """
110
113
updatePublishedOn: Boolean
111
- @deprecated(reason: "Will be removed in one of future releases.")
112
- # By default, updateSavedOn is true. User can set it to false to skip the publishedOn field update.
114
+
115
+ """
116
+ By default, updateSavedOn is true. User can set it to false to skip the savedOn field update.
117
+ Note that this input field is deprecated and will be removed in one of future releases.
118
+ """
113
119
updateSavedOn: Boolean
114
- @deprecated(reason: "Will be removed in one of future releases.")
115
120
}
116
121
117
122
input CmsIdentityInput {
You can’t perform that action at this time.
0 commit comments