From 8d0314d644d652da41669049384ddef74e3ecf52 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Fri, 7 Jun 2019 17:08:31 +0300 Subject: [PATCH] Fix URLs to the GraphQL Specification and its repository (#1959) --- .github/CONTRIBUTING.md | 6 +++--- .github/ISSUE_TEMPLATE.md | 2 +- README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 426a81e966..fdbccf9802 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -4,7 +4,7 @@ Contributing to graphql-js We want to make contributing to this project as easy and transparent as possible. Hopefully this document makes the process for contributing clear and answers any questions you may have. If not, feel free to open an -[Issue](https://github.com/facebook/graphql/issues). +[Issue](https://github.com/graphql/graphql-spec/issues/). ## Issues @@ -24,10 +24,10 @@ your [pull requests](https://help.github.com/articles/creating-a-pull-request). ### Considered Changes Since graphql-js is a reference implementation of the -[GraphQL spec](https://facebook.github.io/graphql/), only changes which comply +[GraphQL spec](https://graphql.github.io/graphql-spec/), only changes which comply with this spec will be considered. If you have a change in mind which requires a change to the spec, please first open an -[issue](https://github.com/facebook/graphql/issues/) against the spec. +[issue](https://github.com/graphql/graphql-spec/issues/) against the spec. ### Contributor License Agreement ("CLA") diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 6b1cee51e2..a98cba9c25 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -14,7 +14,7 @@ The best way to get a bug fixed is to provide a *pull request* with a simplified # Feature requests -GraphQL.js is a reference implementation of the [GraphQL specification](https://github.com/facebook/graphql). To discuss new features which are not GraphQL.js specific and fundamentally change the way GraphQL works, open an issue against the specification. +GraphQL.js is a reference implementation of the [GraphQL specification](https://github.com/graphql/graphql-spec). To discuss new features which are not GraphQL.js specific and fundamentally change the way GraphQL works, open an issue against the specification. # Security bugs diff --git a/README.md b/README.md index 3356d824e1..e682214701 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ Looking for help? Find resources [from the community](https://graphql.org/commun ## Getting Started An overview of GraphQL in general is available in the -[README](https://github.com/facebook/graphql/blob/master/README.md) for the -[Specification for GraphQL](https://github.com/facebook/graphql). That overview +[README](https://github.com/graphql/graphql-spec/blob/master/README.md) for the +[Specification for GraphQL](https://github.com/graphql/graphql-spec). That overview describes a simple set of GraphQL examples that exist as [tests](src/__tests__) in this repository. A good way to get started with this repository is to walk through that README and the corresponding tests in parallel.