Jonathan Kim
Jonathan Kim
I agree with @kristofgilicze I think an authentication integration makes sense with Django because it's provided by the framework. Maybe we can build something into the Django integration @la4de ?...
@karolzlot I personally like the dependency injection API that FastAPI has and I'd like to see something similar implemented in Strawberry. It's unlikely that we would be able to use...
> B. new API that allows to pass the enum values: > > ```python > Ordinal = strawberry.enum(name="Ordinal", values=('NORTH', 'SOUTH')) > > Ordinal.SOUTH > ``` > > benefits: it works...
> > > enumeration types are a special kind of scalar that is restricted to a particular set of allowed values. [[link](https://graphql.org/learn/schema/#enumeration-types)] > > > > > > and Python...
@N-Maas I think there are 2 issues that you have outlined here and they are slightly different: ### 1. Error messages might contain sensitive information about the server This is...
@blueyed the code you have linked to is not where execution errors are captured, it's where the query is parsed. Execution errors are captured in the graphql-core library (https://github.com/graphql-python/graphql-core/blob/c214c1d93a78d7d1a1a0643b1f92a8bf29f4ad14/src/graphql/execution/execute.py#L512-L559) and...
Oh just saw this is WIP sorry @changeling . Feel free to ignore my comments and I can give it a proper review when the PR is actually ready.
@changeling were you planning on updating this PR?
@jckw looks like it hasn't been resolved so I'm reopening. If you have time to create a PR that would be very helpful. Ideally specifying values as NonNull should be...
I really like this @ocavue ! I had no idea you could do this python annotations. I don't know much about annotations actually but I have a couple of questions:...