We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d8f9db commit 9a5b355Copy full SHA for 9a5b355
graphene_django/templates/graphene/graphiql.html
@@ -101,7 +101,9 @@
101
history.replaceState(null, null, locationQuery(parameters));
102
}
103
// If there are any fragment parameters, confirm the user wants to use them.
104
+ var isReload = window.performance ? performance.navigation.type === 1 : false;
105
if (Object.keys(parameters).length
106
+ && !isReload
107
&& !window.confirm("An untrusted query has been loaded, continue loading query?")) {
108
parameters = {};
109
0 commit comments