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>
|
2019-03-19 23:34:10 +03:00
|
|
|
<link href="https://cdn.jsdelivr.net/npm/graphiql@{{graphiql_version}}/graphiql.css"
|
|
|
|
rel="stylesheet"
|
|
|
|
crossorigin="anonymous" />
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/whatwg-fetch@2.0.3/fetch.min.js"
|
|
|
|
integrity="sha384-dcF7KoWRaRpjcNbVPUFgatYgAijf8DqW6NWuqLdfB5Sb4Cdbb8iHX7bHsl9YhpKa"
|
|
|
|
crossorigin="anonymous"></script>
|
2019-05-20 14:41:25 +03:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/react@{{react_version}}/umd/react.production.min.js"
|
2019-03-19 23:34:10 +03:00
|
|
|
crossorigin="anonymous"></script>
|
2019-05-20 14:41:25 +03:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/react-dom@{{react_version}}/umd/react-dom.production.min.js"
|
2019-03-19 23:34:10 +03:00
|
|
|
crossorigin="anonymous"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/graphiql@{{graphiql_version}}/graphiql.min.js"
|
|
|
|
crossorigin="anonymous"></script>
|
2016-09-20 08:04:23 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
2019-12-27 17:26:42 +03:00
|
|
|
{% csrf_token %}
|
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>
|