2016-09-20 08:04:23 +03:00
|
|
|
<!--
|
|
|
|
The request to this GraphQL server provided the header "Accept: text/html"
|
|
|
|
and as a result has been presented GraphiQL - an in-browser IDE for
|
|
|
|
exploring GraphQL.
|
|
|
|
If you wish to receive JSON, provide the header "Accept: application/json" or
|
|
|
|
add "&raw" to the end of the URL within a browser.
|
|
|
|
-->
|
2018-08-30 22:36:26 +03:00
|
|
|
{% load static %}
|
2016-09-20 08:04:23 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<style>
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
2017-12-28 11:55:03 +03:00
|
|
|
<link href="//cdn.jsdelivr.net/npm/graphiql@{{graphiql_version}}/graphiql.css" rel="stylesheet" />
|
|
|
|
<script src="//cdn.jsdelivr.net/npm/whatwg-fetch@2.0.3/fetch.min.js"></script>
|
|
|
|
<script src="//cdn.jsdelivr.net/npm/react@16.2.0/umd/react.production.min.js"></script>
|
|
|
|
<script src="//cdn.jsdelivr.net/npm/react-dom@16.2.0/umd/react-dom.production.min.js"></script>
|
|
|
|
<script src="//cdn.jsdelivr.net/npm/graphiql@{{graphiql_version}}/graphiql.min.js"></script>
|
2016-09-20 08:04:23 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-08-30 22:58:00 +03:00
|
|
|
<script src="{% static 'graphene_django/graphiql.js' %}"></script>
|
2016-09-20 08:04:23 +03:00
|
|
|
</body>
|
|
|
|
</html>
|