@@ -179,7 +179,7 @@ made available via introspection.
179
179
180
180
To allow GraphQL service designers to easily publish documentation alongside the
181
181
capabilities of a GraphQL service, GraphQL descriptions are defined using the
182
- Markdown syntax (as specified by [ CommonMark] ( http ://commonmark.org/) ). In the
182
+ Markdown syntax (as specified by [ CommonMark] ( https ://commonmark.org/) ). In the
183
183
type system definition language, these description strings (often {BlockString})
184
184
occur immediately before the definition they describe.
185
185
@@ -438,7 +438,7 @@ encoding integer numbers larger than 32-bit.
438
438
### Float
439
439
440
440
The Float scalar type represents signed double-precision fractional values
441
- as specified by [ IEEE 754] ( http ://en.wikipedia.org/wiki/IEEE_floating_point) .
441
+ as specified by [ IEEE 754] ( https ://en.wikipedia.org/wiki/IEEE_floating_point) .
442
442
Response formats that support an appropriate double-precision number type
443
443
should use that type to represent this scalar.
444
444
@@ -517,7 +517,7 @@ often numeric, it should always serialize as a `String`.
517
517
GraphQL is agnostic to ID format, and serializes to string to ensure consistency
518
518
across many formats ID could represent, from small auto-increment numbers, to
519
519
large 128-bit random numbers, to base64 encoded values, or string values of a
520
- format like [ GUID] ( http ://en.wikipedia.org/wiki/Globally_unique_identifier) .
520
+ format like [ GUID] ( https ://en.wikipedia.org/wiki/Globally_unique_identifier) .
521
521
522
522
GraphQL servers should coerce as appropriate given the ID formats they expect.
523
523
When coercion is not possible they must raise a field error.
@@ -1765,7 +1765,7 @@ to indicate deprecated portions of a GraphQL service's schema, such as
1765
1765
deprecated fields on a type or deprecated enum values.
1766
1766
1767
1767
Deprecations include a reason for why it is deprecated, which is formatted using
1768
- Markdown syntax (as specified by [CommonMark](http ://commonmark.org/)).
1768
+ Markdown syntax (as specified by [CommonMark](https ://commonmark.org/)).
1769
1769
1770
1770
In this example type definition, `oldField` is deprecated in favor of
1771
1771
using `newField`.
0 commit comments