From 97c3899dca057b0b8ddc623af26d77489b07bd29 Mon Sep 17 00:00:00 2001 From: Stefan Kleeschulte Date: Thu, 4 Nov 2021 14:01:48 -0700 Subject: [PATCH] Set graphql version to ^15.0.0 in install commands (#3623) Summary: Fix https://github.com/facebook/relay/issues/3622 Pull Request resolved: https://github.com/facebook/relay/pull/3623 Test Plan: Imported from GitHub, without a `Test Plan:` line. **Static Docs Preview: relay** |[Full Site](https://our.intern.facebook.com/intern/staticdocs/eph/D32182841/V2/relay/)| |**Modified Pages**| Reviewed By: captbaritone Differential Revision: D32182841 Pulled By: alunyov fbshipit-source-id: 6887c42afddc7fd2a349fd703967cc51adf511a1 --- .../version-v12.0.0/getting-started/step-by-step-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/versioned_docs/version-v12.0.0/getting-started/step-by-step-guide.md b/website/versioned_docs/version-v12.0.0/getting-started/step-by-step-guide.md index 19b115a003ba8..657909ca6e097 100644 --- a/website/versioned_docs/version-v12.0.0/getting-started/step-by-step-guide.md +++ b/website/versioned_docs/version-v12.0.0/getting-started/step-by-step-guide.md @@ -157,11 +157,11 @@ First we'll add the necessary packages. Note that Relay is comprised of three ke ```bash # NPM Users npm install --save relay-runtime react-relay -npm install --save-dev relay-compiler graphql babel-plugin-relay +npm install --save-dev relay-compiler graphql@^15.0.0 babel-plugin-relay # Yarn Users yarn add relay-runtime react-relay -yarn add --dev relay-compiler graphql babel-plugin-relay +yarn add --dev relay-compiler graphql@^15.0.0 babel-plugin-relay ``` ### 4.1 Configure Relay Compiler