Dan Sloan
Dan Sloan
Prefacing this by saying I'm relatively new to pydantic and sqlalchemy, so take what I suggest with a grain of salt. For @Trophime 's sample code - If you add...
Yeah to be clear folks, this is what I had to do, too. I only used a single example, but in my actual project, It wasn't just one model, it...
I just noticed that there is a RuntimeError raised if you use context.base_url when specifying --simple, so perhaps an error if you have any fixtures specified while using --simple is...
ooops sorry @bittner , I completely missed the August message, I'm setting up a new project with behave-django now, so I'll go back and review the issue I had and...
You might be hitting an issue I had, where mutations.update() only works properly with a List return type. I had the same error in a model with no relationships, and...
So far, I've found this to work just fine, like so: ``` PlayerType = strawberry.enum(models.PlayerTypes) @strawberry.django.type(models.Player) class Player: name: auto type: PlayerType ```
I ran into this same issue today. Once I thought about it, it was obvious what was going on, but it was counter-intuitive in terms of how I expected usage...
I think this wouldn't be safe for ASGI events, right? e.g. HTTP expects to process ASGI messages for a connection in order (eg receiving http request body, if it is...
> > e.g. HTTP expects to process ASGI messages for a connection in order (eg receiving http request body, if it is chunked). > > > > I think this...
PR #897 seems to be aimed at changing this but isn't linked to the issue. One concern I have - if this is changed to an Iterable[T] or even Union[Iterable[T],...