From e06ba27d3e768f5f455d6892f6fccb0742492a54 Mon Sep 17 00:00:00 2001 From: Gilly Ames Date: Sat, 14 Sep 2019 09:41:58 +0100 Subject: [PATCH] Upgrade graphiql version to fix history tool Graphiql has a history tool that allows you to save and label favourites, but this version has a bug (fixed https://github.com/graphql/graphiql/issues/750). This change upgrades to the latest version. --- graphene_django/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene_django/views.py b/graphene_django/views.py index aefe114..d2c8324 100644 --- a/graphene_django/views.py +++ b/graphene_django/views.py @@ -51,7 +51,7 @@ def instantiate_middleware(middlewares): class GraphQLView(View): - graphiql_version = "0.13.0" + graphiql_version = "0.14.0" graphiql_template = "graphene/graphiql.html" react_version = "16.8.6"