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
I'm testing sonic-graphql and I've noticed that when I install it, it tries to install graphql-core>=2.1rc1 but installs graphql-core 2.0 instead https://pastebin.com/raw/BhAyEWCd
which then makes sanic-graphql fail on :
from graphql import get_default_backend
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-01959c5bc935> in <module>()
----> 1 from graphql import get_default_backend
ImportError: cannot import name 'get_default_backend'
If instead I first install graphql-core==2.1rc1 I don't have any issue
The text was updated successfully, but these errors were encountered:
Hey,
I'm testing sonic-graphql and I've noticed that when I install it, it tries to install
graphql-core>=2.1rc1
but installsgraphql-core 2.0
instead https://pastebin.com/raw/BhAyEWCdwhich then makes sanic-graphql fail on :
If instead I first install
graphql-core==2.1rc1
I don't have any issueThe text was updated successfully, but these errors were encountered: