Skip to content

Commit 918bc97

Browse files
committed
Use latest GraphiQL version
1 parent cd3f734 commit 918bc97

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

aiohttp_graphql/render_graphiql.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33

44
from aiohttp import web
55

6-
7-
GRAPHIQL_VERSION = "0.11.10"
6+
GRAPHIQL_VERSION = "0.17.5"
87

98
TEMPLATE = """<!--
109
The request to this GraphQL server provided the header "Accept: text/html"
@@ -26,9 +25,9 @@
2625
</style>
2726
<meta name="referrer" content="no-referrer">
2827
<link href="//cdn.jsdelivr.net/npm/graphiql@{{graphiql_version}}/graphiql.css" rel="stylesheet" />
29-
<script src="//cdn.jsdelivr.net/gh/github/fetch@2.0.3/fetch.min.js"></script>
30-
<script src="//cdn.jsdelivr.net/npm/react@16.2.0/umd/react.production.min.js"></script>
31-
<script src="//cdn.jsdelivr.net/npm/react-dom@16.2.0/umd/react-dom.production.min.js"></script>
28+
<script src="//cdn.jsdelivr.net/gh/github/fetch@3.0.0/fetch.min.js"></script>
29+
<script src="//cdn.jsdelivr.net/npm/react@16.12.0/umd/react.production.min.js"></script>
30+
<script src="//cdn.jsdelivr.net/npm/react-dom@16.12.0/umd/react-dom.production.min.js"></script>
3231
<script src="//cdn.jsdelivr.net/npm/graphiql@{{graphiql_version}}/graphiql.min.js"></script>
3332
</head>
3433
<body>

0 commit comments

Comments
 (0)