ariadne-django
ariadne-django copied to clipboard
ariadne_django makes integrating ariadne and django together easier.
Bumps [black](https://github.com/psf/black) from 22.6.0 to 24.3.0. Release notes Sourced from black's releases. 24.3.0 Highlights This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black...
Since ariadne 0.18 it is possible to change the execution context class. This makes it possible to use an execution context that supports deferred execution of dataloaders: https://github.com/jkimbo/graphql-sync-dataloaders As ariadne-django...
Bumps [python-multipart](https://github.com/andrew-d/python-multipart) from 0.0.5 to 0.0.7. Changelog Sourced from python-multipart's changelog. 0.0.7 (2024-02-03) Refactor header option parser to use the standard library instead of a custom RegEx #75. 0.0.6 (2023-02-27)...
Has anyone managed to get the graphql playground working with Django debug toolbar?
Without this change, Django Debug Toolbar won't show on the playground page. Note that by default only the GET request that loaded the page is shown, but GraphQL queries can...
Are there any examples of how to deal with Manytomany fields? Do I have to write a query to prefetch choice fields when updating the fields?
I find this to be a good way of setting up a delete by id: ``` type_defs = gql(""" type Document { id:ID name: String! } type DeleteResults{ success:[String] errors:[String]...
Currently the `timedelta` scalar serializer returns a float equivalent to the total amount of seconds. https://github.com/reset-button/ariadne_django/blob/5a7c9d15a2b0e0baa8b7e7aad032c738a3dcd1fe/ariadne_django/scalars/timedelta.py#L10-L12 It could be an idea to return the ISO format for durations (see https://en.wikipedia.org/wiki/ISO_8601#Durations)....
Provide documentation via readthedocs on how to install, configure, etc.
I've just about had it with writing `import_module("resetbutton.graphql.query_type").type_defs,` into schema.py.