From ae126a6dc3d7ebc24121e6201ad078f413c81455 Mon Sep 17 00:00:00 2001 From: Charles Bradshaw Date: Tue, 19 Mar 2019 16:20:26 -0400 Subject: [PATCH] Add Introspection Schema Link in Documentation (#489) By the end of the Graphene and Django Tutorial using Relay, one might think they have finished everything needed server side for Relay, but six sections later, in a section that doesn't mention Relay in the title, the final required step for Relay is documented. --- docs/tutorial-relay.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/tutorial-relay.rst b/docs/tutorial-relay.rst index f2502d7..188a108 100644 --- a/docs/tutorial-relay.rst +++ b/docs/tutorial-relay.rst @@ -345,3 +345,10 @@ Or you can get only 'meat' ingredients containing the letter 'e': } } } + + + +Final Steps +^^^^^^^^^^^ + +We have created a GraphQL endpoint that will work with Relay, but for Relay to work it needs access to a (non python) schema. Instructions to export the schema can be found on the `Introspection Schema `__ part of this guide.