We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After cloning the project and starting with Django (version 2.1a1) and did have to modify
from django.core.urlresolvers import reverse
to
from django.urls import reverse
and added new entries in SQLite then
python manage.py migrate
But
./manage.py runserver
returns:
But the SQLite database is clearly present within IDE:
The text was updated successfully, but these errors were encountered:
@miriam-z I'll be pushing out fix/update later today after I have gone through the release notes for Django 2.1.
Sorry, something went wrong.
@miriam-z but message says that your resolver function does not understand the id arg
when declaring fields you could try to set
person = graphene.Field( UserType, id=graphene.Int(), )
I believe that's gonna help
No branches or pull requests
After cloning the project and starting with Django (version 2.1a1) and did have to modify
from django.core.urlresolvers import reverse
to
from django.urls import reverse
and added new entries in SQLite then
python manage.py migrate
But
./manage.py runserver
returns:
But the SQLite database is clearly present within IDE:
The text was updated successfully, but these errors were encountered: