Skip to content

Commit b83ca98

Browse files
maantjeleebyron
authored andcommitted
Change scheme for URLs from http to https where https is available. (#504)
1 parent 4efbbc0 commit b83ca98

5 files changed

+11
-11
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# GraphQL
22

33
The GraphQL specification is edited in the markdown files found in [`/spec`](./spec)
4-
the latest release of which is published at http://facebook.github.io/graphql/.
4+
the latest release of which is published at https://facebook.github.io/graphql/.
55

6-
The latest draft specification can be found at http://facebook.github.io/graphql/draft/
6+
The latest draft specification can be found at https://facebook.github.io/graphql/draft/
77
which tracks the latest commit to the master branch in this repository.
88

99
Previous releases of the GraphQL specification can be found at permalinks that
1010
match their [release tag](https://github.com/facebook/graphql/releases). For
11-
example, http://facebook.github.io/graphql/October2016/. If you are linking
11+
example, https://facebook.github.io/graphql/October2016/. If you are linking
1212
directly to the GraphQL specification, it's best to link to a tagged permalink
1313
for the particular referenced version.
1414

@@ -24,7 +24,7 @@ In order to be broadly adopted, GraphQL will have to target a wide
2424
variety of backends, frameworks, and languages, which will necessitate a
2525
collaborative effort across projects and organizations. This specification serves as a point of coordination for this effort.
2626

27-
Looking for help? Find resources [from the community](http://graphql.org/community/).
27+
Looking for help? Find resources [from the community](https://graphql.org/community/).
2828

2929
## Getting Started
3030

spec/GraphQL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ this open standard started in 2015.
1313
GraphQL has evolved and may continue to evolve in future editions of this
1414
specification. Previous editions of the GraphQL specification can be found at
1515
permalinks that match their [release tag](https://github.com/facebook/graphql/releases).
16-
The latest working draft release can be found at [facebook.github.io/graphql/draft/](http://facebook.github.io/graphql/draft/).
16+
The latest working draft release can be found at [facebook.github.io/graphql/draft/](https://facebook.github.io/graphql/draft/).
1717

1818
**Copyright notice**
1919

spec/Section 2 -- Language.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ used in this document.
1919
SourceCharacter :: /[\u0009\u000A\u000D\u0020-\uFFFF]/
2020

2121
GraphQL documents are expressed as a sequence of
22-
[Unicode](http://unicode.org/standard/standard.html) characters. However, with
22+
[Unicode](https://unicode.org/standard/standard.html) characters. However, with
2323
few exceptions, most of GraphQL is expressed only in the original non-control
2424
ASCII range so as to be as widely compatible with as many existing tools,
2525
languages, and serialization formats as possible and avoid display issues in

spec/Section 3 -- Type System.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ made available via introspection.
179179

180180
To allow GraphQL service designers to easily publish documentation alongside the
181181
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
183183
type system definition language, these description strings (often {BlockString})
184184
occur immediately before the definition they describe.
185185

@@ -438,7 +438,7 @@ encoding integer numbers larger than 32-bit.
438438
### Float
439439

440440
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).
442442
Response formats that support an appropriate double-precision number type
443443
should use that type to represent this scalar.
444444

@@ -517,7 +517,7 @@ often numeric, it should always serialize as a `String`.
517517
GraphQL is agnostic to ID format, and serializes to string to ensure consistency
518518
across many formats ID could represent, from small auto-increment numbers, to
519519
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).
521521

522522
GraphQL servers should coerce as appropriate given the ID formats they expect.
523523
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
17651765
deprecated fields on a type or deprecated enum values.
17661766

17671767
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/)).
17691769

17701770
In this example type definition, `oldField` is deprecated in favor of
17711771
using `newField`.

spec/Section 4 -- Introspection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ underscores.
7171
All types in the introspection system provide a `description` field of type
7272
`String` to allow type designers to publish documentation in addition to
7373
capabilities. A GraphQL server may return the `description` field using Markdown
74-
syntax (as specified by [CommonMark](http://commonmark.org/)). Therefore it is
74+
syntax (as specified by [CommonMark](https://commonmark.org/)). Therefore it is
7575
recommended that any tool that displays `description` use a CommonMark-compliant
7676
Markdown renderer.
7777

0 commit comments

Comments
 (0)