File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -116,8 +116,9 @@ def __repr__(self):
116
116
GraphQLString ,
117
117
description = 'Explains why this element was deprecated,'
118
118
' usually also including a suggestion for how to access'
119
- ' supported similar data. Formatted in [Markdown]'
120
- '(https://daringfireball.net/projects/markdown/).' ,
119
+ ' supported similar data.'
120
+ ' Formatted using the Markdown syntax, as specified by'
121
+ ' [CommonMark](https://commonmark.org/).' ,
121
122
default_value = DEFAULT_DEPRECATION_REASON )},
122
123
description = 'Marks an element of a GraphQL schema as no longer supported.' )
123
124
Original file line number Diff line number Diff line change @@ -529,8 +529,8 @@ def prints_introspection_schema():
529
529
directive @deprecated(
530
530
"""
531
531
Explains why this element was deprecated, usually also including a suggestion
532
- for how to access supported similar data. Formatted in
533
- [Markdown ](https://daringfireball.net/projects/markdown /).
532
+ for how to access supported similar data. Formatted using the Markdown syntax,
533
+ as specified by [CommonMark ](https://commonmark.org /).
534
534
"""
535
535
reason: String = "No longer supported"
536
536
) on FIELD_DEFINITION | ENUM_VALUE
You can’t perform that action at this time.
0 commit comments