title |
---|
Frequently Asked Questions |
The request object is accessible via the get_request
method.
from strawberry_django.utils.requests import get_request
def resolver(root, info: Info):
request = get_request(info)
The current user object is accessible via the get_current_user
method.
from strawberry_django.auth.utils import get_current_user
def resolver(root, info: Info):
current_user = get_current_user(info)
Some editors like VSCode may not be able to resolve symbols and types without explicit strawberry.django
import. Adding following line to code fixes that problem.
import strawberry.django
See complete Django project from github repository folder examples/django.