-
Notifications
You must be signed in to change notification settings - Fork 229
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
Flask example gives ImportError #380
Comments
Someone suggested upgrading Flask-GraphQL to 2.0.1, here: https://stackoverflow.com/questions/70204957/flask-graphql-import-fails I'll try it. "Successfully installed":
Now the error is:
I used Result: Pip conflict:
Interesting note from flask-graphql: |
Going to try downgrading graphene-sqlalchemy (or Graphene itself?) from v3.0, because the README says:
Scratch this. Not sure which version I should downgrade to. Going to instead chase the errors by editing the pip packages. |
Okay, flask-graphql's fix was to pin graphql-core to be under version 3. However, the latest graphene versions require graphql-core to be over version 3.1. So, I will try to find the latest graphene version that allows graphql-core to be under version 3. The target version seems to be: This leads to a new dependency error:
The target version seems to be: |
I'd strongly advise using the 3.0 beta if you're starting off a new project. It works best together with an This should work with flask + graphene 3: https://github.com/graphql-python/graphql-server |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related topics referencing this issue. |
Might be the only answer for now?
Approach: Downgrade.
How: Replace the entire contents of
graphene-sqlalchemy/examples/flask_sqlalchemy/requirements.txt
with:Original post
Hello,
I followed the README instructions for Example Flask+SQLAlchemy Project and I'm getting the following error:
ImportError: cannot import name 'get_default_backend' from 'graphql' (/home/mwk/code/graphene-sqlalchemy/.venv/lib/python3.9/site-packages/graphql/__init__.py)
My intention with this issue is to figure it out, documenting it for others, including a future me. Help is welcomed.
Upon
pip install -r requirements.txt
, I see this list of packages and versions (removed some probably-irrelevant ones:"Successfully installed":
Perhaps one of these versions is not the one I should be using.
I'm using Python 3.9.4, on WSL 2, Ubuntu 22.04.1 LTS, VS Code, pipenv shell.
Relevant discussions:
graphql-python/graphene#1086
https://stackoverflow.com/questions/70204957/flask-graphql-import-fails
#348
graphql-python/graphql-server#29
graphql-python/flask-graphql#66
The text was updated successfully, but these errors were encountered: