Skip to content

Commit 7f56b46

Browse files
Editing the broken links (#874)
1 parent f18b33d commit 7f56b46

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ of objects it can return, described in a GraphQL type system and returned
5151
in the GraphQL Schema.
5252

5353
For our Star Wars example, the
54-
[starWarsSchema.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsSchema.js)
54+
[starWarsSchema.ts](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsSchema.ts)
5555
file in GraphQL.js defines this type system.
5656

5757
The most basic type in the system will be `Human`, representing characters
@@ -72,7 +72,7 @@ This shorthand is convenient for describing the basic shape of a type
7272
system; the JavaScript implementation is more full-featured, and allows types
7373
and fields to be documented. It also sets up the mapping between the
7474
type system and the underlying data; for a test case in GraphQL.js, the
75-
underlying data is a [set of JavaScript objects](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsData.js),
75+
underlying data is a [set of JavaScript objects](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsData.ts),
7676
but in most cases the backing data will be accessed through some service, and
7777
this type system layer will be responsible for mapping from types and fields to
7878
that service.
@@ -247,11 +247,11 @@ GraphQL queries declaratively describe what data the issuer wishes
247247
to fetch from whoever is fulfilling the GraphQL query.
248248

249249
For our Star Wars example, the
250-
[starWarsQueryTests.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsQuery-test.js)
250+
[starWarsQueryTests.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsQuery-test.ts)
251251
file in the GraphQL.js repository contains a number of queries and responses.
252252
That file is a test file that uses the schema discussed above and a set of
253253
sample data, located in
254-
[starWarsData.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsData.js).
254+
[starWarsData.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsData.ts).
255255
This test file can be run to exercise the reference implementation.
256256

257257
An example query on the above schema would be:
@@ -606,7 +606,7 @@ developers when an invalid query has been created, without having to rely
606606
on runtime checks.
607607

608608
For our Star Wars example, the file
609-
[starWarsValidationTests.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsValidation-test.js)
609+
[starWarsValidationTests.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsValidation-test.ts)
610610
contains a number of demonstrations of invalid operations, and is a test
611611
file that can be run to exercise the reference implementation's validator.
612612

@@ -744,7 +744,7 @@ queries it supports. GraphQL allows us to do so using the introspection
744744
system!
745745

746746
For our Star Wars example, the file
747-
[starWarsIntrospectionTests.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsIntrospection-test.js)
747+
[starWarsIntrospectionTests.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsIntrospection-test.ts)
748748
contains a number of queries demonstrating the introspection system, and is a
749749
test file that can be run to exercise the reference implementation's
750750
introspection system.
@@ -1116,7 +1116,7 @@ and create documentation browsers, or rich IDE experiences.
11161116
This has just scratched the surface of the introspection system; we can
11171117
query for enum values, what interfaces a type implements, and more. We
11181118
can even introspect on the introspection system itself. The specification goes
1119-
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)
1119+
into more detail about this topic in the "Introspection" section, and the [introspection](https://github.com/graphql/graphql-js/blob/main/src/type/introspection.ts)
11201120
file in GraphQL.js
11211121
contains code implementing a specification-compliant GraphQL query
11221122
introspection system.
@@ -1132,7 +1132,7 @@ and how to format a GraphQL response, as well as the grammar for GraphQL.
11321132

11331133
### Contributing to this repo
11341134

1135-
This repository is managed by EasyCLA. Project participants must sign the free ([GraphQL Specification Membership agreement](https://preview-spec-membership.graphql.org) before making a contribution. You only need to do this one time, and it can be signed by [individual contributors](http://individual-spec-membership.graphql.org/) or their [employers](http://corporate-spec-membership.graphql.org/).
1135+
This repository is managed by EasyCLA. Project participants must sign the free ([GraphQL Specification Membership agreement](https://preview-spec-membership.graphql.org) before making a contribution. You only need to do this one time, and it can be signed by [individual contributors](https://individual-spec-membership.graphql.org/) or their [employers](https://corporate-spec-membership.graphql.org/).
11361136

11371137
To initiate the signature process please open a PR against this repo. The EasyCLA bot will block the merge if we still need a membership agreement from you.
11381138

0 commit comments

Comments
 (0)