You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
graphiql_version: The graphiql version to load. Defaults to "1.0.3".
reallly? If I set graphiql_version=1.0.3 explicitly, then Chrome throws error
Uncaught Error: GraphiQL 0.18.0 and after is not compatible with React 15 or below
I did not find anywhere the render_graphiql.py set the variable to "1.0.3"
In my local drive is GRAPHIQL_VERSION = '0.11.11';
and gitlab GRAPHIQL_VERSION = '0.7.1'
The text was updated successfully, but these errors were encountered:
It's because you are reading the readme for the master branch, but that is somewhat newer than the latest PyPI release, which is v2.0.1. This version used a much older version of React and a much older default GraphiQL. You can in theory upgrade a few of these packages to the github master branch but I don't recommend it for dependency hell reasons. I think we just have to wait until this repo, and graphql-server publish their 3.x.x versions and everything will work.
I have
Flask-GraphQL==2.0.1
installed and inside Chrome it is requiring dependencies likehowever the github readme says
reallly? If I set
graphiql_version=1.0.3
explicitly, then Chrome throws errorI did not find anywhere the
render_graphiql.py
set the variable to "1.0.3"In my local drive is
GRAPHIQL_VERSION = '0.11.11'
;and gitlab
GRAPHIQL_VERSION = '0.7.1'
The text was updated successfully, but these errors were encountered: