strawberry-django-plus icon indicating copy to clipboard operation
strawberry-django-plus copied to clipboard

Enhanced Strawberry GraphQL integration with Django

Results 37 strawberry-django-plus issues
Sort by recently updated
recently updated
newest added

As the author of this lib and the current maintainer of the official strawberry django integration (https://github.com/strawberry-graphql/strawberry-graphql-django), I'm happy to announce that strawberry-django-plus has finally been merged into strawberry-graphql-django! 😊...

I have a mutation that looks something like ```python @gql.django.input_mutation(permission_classes=[IsAdmin]) def mutate_thing( self, info: Info, ) -> None: # do the thing return None ``` This throws an exception when...

I think supporting fields/exclude like in DRF and Graphene is a nice feature to have. I did implement the fields arg locally like the following ``` dataclass_fields = list(_get_fields(django_type).values()) if...

enhancement
help wanted

Deeply nested create mutation is not working for the case where I have 3 models A, B, C. The issue is in the field of Model B which is ManyToOneRel...

Argument filters shows up in GraphiQL, but still got an error. It works fine before upgrading to v3. ![image](https://github.com/blb-ventures/strawberry-django-plus/assets/5219550/e7099117-7eac-4c25-b1ae-4216603f7e9f) ![image](https://github.com/blb-ventures/strawberry-django-plus/assets/5219550/1c133fb8-16c7-462d-8e1c-c154c24b2f69) Related code: ```python @gql.django.type(models.Device, filters=DeviceFilter, order=DeviceOrder) class Device(relay.Node): name: auto...

enhancement
help wanted

In this [comment](https://github.com/blb-ventures/strawberry-django-plus/issues/159#issuecomment-1371210717) you say that we should be able to optimise the queryset of a manually prefetched field using `optimize`, however this does not appear to work. The following...

Hi, Here is my schema and query. When I run the query, I get some extra SQL queries in Debug Toolbar, that seem unnecessary. Not sure what is invoking them...

hey all. I'm trying to make a `update_user` mutation that verifies that the ID passed via the input is the same as the request user. thankfully I found the `node_id.aresolve_node`...

## Feature Request Type - [ ] Core functionality - [ ] Alteration (enhancement/optimization) of existing feature(s) - [ ] New behavior ## Description Is it possible to make batch...