Paul Vecchio

Results 15 comments of Paul Vecchio

Here's a forked repo which adds PKCE support that @READ10 contributed - https://github.com/Solidangle-net/dj-rest-auth

> I only tested against Google and IIRC I was surprised that they required some of the bits they did. Anyway, I've moved away from dj-rest-auth because I didn't want...

this may be a more performant workaround ```python @strawberry_django.field( annotate={ "_private_details": lambda info: Case( When( Exists( filter_for_user( models.Note.objects.all(), info.context.request.user, [PrivateNotePermissions.VIEW], ) ), then=F("private_details"), ), default=Value(None), ), } ) def private_details(self,...

Seems like a similar library for graphene has worked around this issue. At least with nested queries maybe unrelated to perms. https://github.com/MrThearMan/graphene-django-query-optimizer/issues/62 https://github.com/MrThearMan/graphene-django-query-optimizer/commit/355b50783cc239c76ca1dbeb11ab515d87197c2c

Hi all, checking in here to see if there is anything that I can do to help move this project to jazzband or getting in touch with Django official.