Here\'s my code:
app.py
from flask_graphql import GraphQLView from app.infrastructure.graphql import schema from app.infrastructure.api_resource impo
You have a folder called app (as by the import lines in your file) and a app.py file.
app
Gunicorn will try to find the app WSGI variable inside the app module, which in your case is identified as app/__init__.py
app/__init__.py
You need to rename your folder or your app.py file to avoid this conflict.