Skip to content

Commit

Permalink
Merge pull request #1056 from graphql/fix-links-ts-conversion
Browse files Browse the repository at this point in the history
Fix .js -> .ts links after TypeScript conversion
  • Loading branch information
brianwarner committed Jun 2, 2021
2 parents fec254f + c8ddf89 commit 7797344
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/content/learn/Learn-Introspection.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ queries it supports. GraphQL allows us to do so using the introspection
system!

For our Star Wars example, the file
[starWarsIntrospection-test.js](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsIntrospection-test.js)
[starWarsIntrospection-test.ts](https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsIntrospection-test.ts)
contains a number of queries demonstrating the introspection system, and is a
test file that can be run to exercise the reference implementation's
introspection system.
Expand Down Expand Up @@ -180,6 +180,6 @@ and create documentation browsers, or rich IDE experiences.
This has just scratched the surface of the introspection system; we can
query for enum values, what interfaces a type implements, and more. We
can even introspect on the introspection system itself. The specification goes
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)
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)
file in GraphQL.js contains code implementing a specification-compliant GraphQL
query introspection system.
2 changes: 1 addition & 1 deletion src/content/learn/Learn-Validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ developers when an invalid query has been created, without having to rely
on runtime checks.

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

Expand Down

0 comments on commit 7797344

Please sign in to comment.