Replies: 4 comments 7 replies
-
I was just to write about model serializer 🙂 |
Beta Was this translation helpful? Give feedback.
-
From existing issues: |
Beta Was this translation helpful? Give feedback.
-
Why built in support for JWT? Is that a common way to handle authentication in Django? I've only used the built in session management.
+1 on this. Is Channels still the best way to add websocket support to Django? |
Beta Was this translation helpful? Give feedback.
-
Even things like adding management commands for exporting the schema would help class Command(BaseCommand):
help = "Export GraphQL Schema"
def handle(self, *args, **options):
print(print_schema(schema)) for example, is quick and easy boilerplate, but goes a long way. We failed to get the standard command to discover the schema and export it when run under django, but this works nicely. |
Beta Was this translation helpful? Give feedback.
-
Hi folks, I was working on a project for my parents and I though we can improve our Django support (excluding the model conversion part for now).
Ideas:
What do you think? Anything else we should add?
Beta Was this translation helpful? Give feedback.
All reactions