Patrick Arminio
Patrick Arminio
this: ``` @strawberry.field def my_resolver(self, id_: strawberry.ID) -> ...: ... ``` should change the `id_` name to be `id` on the schema.
This was prompted by this issue: https://github.com/strawberry-graphql/strawberry/issues/1887 Currently there are some cases where the behaviour we have might not be what one expects. And we could also improve how we...
I would be nice to get have 100% type coverage, but we don't have anything at the moment that reports the coverage on ci, we should add something like that...
We have a guide for federation but we don't really list all the options we have for fields and types. We should do that. Also for API docs see: #1872
It would be nice to have a command to convert an SDL to strawberry types, something like: ```gql type User { name: String! } type Query { user: User }...
I've been trying running prettier on the [django](https://github.com/django/django) codebase and I noticed that they use single quotes for almost all the strings and double quotes for the docstrings, which seems...
See #70 and #1 This is not enabled yet as it the build will fail :)
See PEP-8: https://www.python.org/dev/peps/pep-0008/#comments
this: ```py raise NotImplementedError( 'The SimpleListFilter.lookups() method must be overridden to ' 'return a list of tuples (value, verbose value).' ) ``` gets converted to ```py raise NotImplementedError('The SimpleListFilter.lookups() method...