Keith

Results 10 issues of Keith

In order to better triage issues, it would be helpful to clear out old issues. I used 365 as it seems to be the commonly used configuration for other open-source...

We are big fans of graphene-django-extras but also wanted to upgrade to Django 4 (and the new graphne 3.0 official release). Changes are all covered by existing test cases.

We've noticed that in some of the mutations, the before_save trigger actually happens after save. This PR request has a proposed refactor: Changes: - Ensure that the `before_save` function always...

Currently, the hiding of the default parameter only works for simple objects such as strings and integers. This allows it to work for complex objects. Thus allowing the user to...

It is helpful to have the operation's name if trying to track the individual performance of GraphQL transactions using Sentry. This PR implements the approach suggested in [this article](https://jerrynsh.com/how-to-monitor-python-graphql-api-with-sentry/), as...

## Example type: ``` @strawberry_django.input(Fruit) class FruitInputPartial(PermissionMixin): id: auto location: auto ``` ## Example mutation ``` mutation PatchFruit { patchFruit(data: {id: 1, location: {set: 1}}) { id location { id...

bug

test.equal(new Date("3/29/2013 12:30:00 AM"), new Date("3/29/2013 12:30:00 AM"));

Strawberry supports [serialization for nested mutations](https://strawberry.rocks/docs/general/mutations#nested-mutations) but Strawberry-Django doesn't seem to be able do it in an atomic way ## Feature Request Type - [x] New behavior ## Description In...

enhancement
help wanted
proposal