Skip to content

Commit 1402577

Browse files
authored
Merge pull request graphql#1012 from stingalleman/source
Fix links that have renamed their branch to main
2 parents d266e9a + 3a7b037 commit 1402577

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/content/faq/General.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Many people! The [GraphQL specification and all related projects](http://github.
4545

4646
The [GraphQL Foundation](#what-is-the-graphql-foundation) provides most of the oversight for GraphQL. It's made up of [representatives from dozens of different companies](https://foundation.graphql.org/members/).
4747

48-
There are also monthly virtual [GraphQL Working Group (WG)](https://github.com/graphql/graphql-wg) meetings managed by the GraphQL Foundation. These meetings are designed to bring together maintainers of commonly used GraphQL libraries and tools, as well as significant contributors to the GraphQL community. The WG meetings are completely open. Anyone is able to join and [propose items to the agenda](https://github.com/graphql/graphql-wg/blob/master/agendas/).
48+
There are also monthly virtual [GraphQL Working Group (WG)](https://github.com/graphql/graphql-wg) meetings managed by the GraphQL Foundation. These meetings are designed to bring together maintainers of commonly used GraphQL libraries and tools, as well as significant contributors to the GraphQL community. The WG meetings are completely open. Anyone is able to join and [propose items to the agenda](https://github.com/graphql/graphql-wg/blob/main/agendas/).
4949

5050
In the [November 2020 WG meeting](https://www.youtube.com/watch?v=UybZp9O24Ow), it was announced that GraphQL will have a Technical Steering Committee (TSC) going forward. More on that coming soon.
5151

src/content/faq/Specification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The entire process behind each release is open source. You can monitor specifica
1313

1414
### How can I contribute to the GraphQL specification?
1515

16-
GraphQL is still evolving and contributions are very welcome! The specification (including the [latest working draft](https://spec.graphql.org/)) is open source. [Contributor guidelines](https://github.com/graphql/graphql-spec/blob/master/CONTRIBUTING.md) are available on GitHub.
16+
GraphQL is still evolving and contributions are very welcome! The specification (including the [latest working draft](https://spec.graphql.org/)) is open source. [Contributor guidelines](https://github.com/graphql/graphql-spec/blob/main/CONTRIBUTING.md) are available on GitHub.
1717

1818
There are more ways to get involved with GraphQL beyond the specification though. Updating the content on [this website and the documentation](https://github.com/graphql/graphql.github.io), for example. Or contributing to [graphql-js](https://github.com/graphql/graphql-js), [express-graphql](https://github.com/graphql/express-graphql), [GraphiQL](https://github.com/graphql/graphiql), or [one of the many other projects](https://github.com/graphql/) maintained by the [GraphQL Foundation](#what-is-the-graphql-foundation).
1919

src/content/learn/Learn-Introspection.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ queries it supports. GraphQL allows us to do so using the introspection
1111
system!
1212

1313
For our Star Wars example, the file
14-
[starWarsIntrospection-test.js](https://github.com/graphql/graphql-js/blob/master/src/__tests__/starWarsIntrospection-test.js)
14+
[starWarsIntrospection-test.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsIntrospection-test.js)
1515
contains a number of queries demonstrating the introspection system, and is a
1616
test file that can be run to exercise the reference implementation's
1717
introspection system.
@@ -180,6 +180,6 @@ and create documentation browsers, or rich IDE experiences.
180180
This has just scratched the surface of the introspection system; we can
181181
query for enum values, what interfaces a type implements, and more. We
182182
can even introspect on the introspection system itself. The specification goes
183-
into more detail about this topic in the "Introspection" section, and the [introspection](https://github.com/graphql/graphql-js/blob/master/src/type/introspection.js)
183+
into more detail about this topic in the "Introspection" section, and the [introspection](https://github.com/graphql/graphql-js/blob/main/src/type/introspection.js)
184184
file in GraphQL.js contains code implementing a specification-compliant GraphQL
185185
query introspection system.

src/content/learn/Learn-Validation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ developers when an invalid query has been created, without having to rely
1212
on runtime checks.
1313

1414
For our Star Wars example, the file
15-
[starWarsValidation-test.js](https://github.com/graphql/graphql-js/blob/master/src/__tests__/starWarsValidation-test.js)
15+
[starWarsValidation-test.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsValidation-test.js)
1616
contains a number of queries demonstrating various invalidities, and is a test
1717
file that can be run to exercise the reference implementation's validator.
1818

@@ -165,6 +165,6 @@ This has just scratched the surface of the validation system; there
165165
are a number of validation rules in place to ensure that a GraphQL query
166166
is semantically meaningful. The specification goes into more detail about this
167167
topic in the "Validation" section, and the
168-
[validation](https://github.com/graphql/graphql-js/blob/master/src/validation)
168+
[validation](https://github.com/graphql/graphql-js/blob/main/src/validation)
169169
directory in GraphQL.js contains code implementing a
170170
specification-compliant GraphQL validator.

0 commit comments

Comments
 (0)