From d541aca80f821ce20cd79559111b14d1e1e74c83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valt=C3=BDr=20=C3=96rn=20Kjartansson?= Date: Sun, 23 Dec 2018 13:28:50 +0000 Subject: [PATCH] Mention the GraphQL context object in docs --- docs/source/tour.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/tour.rst b/docs/source/tour.rst index a331d7d..6ccc367 100644 --- a/docs/source/tour.rst +++ b/docs/source/tour.rst @@ -52,6 +52,8 @@ Serve a GraphQL API:: Visiting the endpoint will render a *GraphiQL* instance, in the browser. +You can make use of Responder's Request and Response objects in your GraphQL resolvers through ``info.context['request']`` and ``info.context['response']``. + OpenAPI Schema Support ----------------------