Skip to content

Updated graphiql to 0.11.11 #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions webob_graphql/mako.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from .utils import tojson

GRAPHIQL_VERSION = '0.10.2'
GRAPHIQL_VERSION = '0.11.11'

TEMPLATE = Template('''<!--
The request to this GraphQL server provided the header "Accept: text/html"
Expand All @@ -24,11 +24,11 @@
width: 100%;
}
</style>
<link href="//cdn.jsdelivr.net/graphiql/${graphiql_version}/graphiql.css" rel="stylesheet" />
<link href="//cdn.jsdelivr.net/npm/graphiql@${graphiql_version}/graphiql.css" rel="stylesheet" />
<script src="//cdn.jsdelivr.net/fetch/2.0.1/fetch.min.js"></script>
<script src="//cdn.jsdelivr.net/react/15.5.4/react.min.js"></script>
<script src="//cdn.jsdelivr.net/react/15.5.4/react-dom.min.js"></script>
<script src="//cdn.jsdelivr.net/graphiql/${graphiql_version}/graphiql.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/graphiql@${graphiql_version}/graphiql.min.js"></script>
</head>
<body>
<script>
Expand Down
6 changes: 3 additions & 3 deletions webob_graphql/render_graphiql.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from .utils import tojson

GRAPHIQL_VERSION = '0.10.2'
GRAPHIQL_VERSION = '0.11.11'

TEMPLATE = Template('''<!--
The request to this GraphQL server provided the header "Accept: text/html"
Expand All @@ -22,11 +22,11 @@
width: 100%;
}
</style>
<link href="//cdn.jsdelivr.net/graphiql/${graphiql_version}/graphiql.css" rel="stylesheet" />
<link href="//cdn.jsdelivr.net/npm/graphiql@${graphiql_version}/graphiql.css" rel="stylesheet" />
<script src="//cdn.jsdelivr.net/fetch/2.0.1/fetch.min.js"></script>
<script src="//cdn.jsdelivr.net/react/15.5.4/react.min.js"></script>
<script src="//cdn.jsdelivr.net/react/15.5.4/react-dom.min.js"></script>
<script src="//cdn.jsdelivr.net/graphiql/${graphiql_version}/graphiql.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/graphiql@${graphiql_version}/graphiql.min.js"></script>
</head>
<body>
<script>
Expand Down