Patrick Arminio
Patrick Arminio
Hey folks, I while ago I wrote down some ideas on how we can add support for query complexity. For this we'll need two things: 1. An extensions that calculates...
Imagine we have this type: ```python @strawberry.type class Frequency: kind: str times: int ``` and we want to use it as input, to do so we need to make a...
So at the moment our operation directives only operate on results of fields, I think we might want to allow complete customisation of a field So we can do this...
Hi there :) would you be interested in replacing the current tutorial with a newer one based on [Strawberry](https://github.com/strawberry-graphql/strawberry/)? Or shall I create a new tutorial?
Similar to what we do for filters, we could allow people to add a static qs to fields: ``` @strawberry.type class Query: posts: list[PostType] = strawberry_django.field(Post, queryset=Post.objects.published()) all_posts: list[PostType] =...
### Describe the Bug Having `as` as Prop gives this error: 'Props' is declared but never used` here's a small reproduction ```astro --- interface Props { as?: string; href?: string;...
https://www.attrs.org/en/stable/examples.html
### Current Behavior Hi there, I'm having an seemingly random issue with nox on GitHub actions, here's an example of a test failure: https://github.com/strawberry-graphql/strawberry/actions/runs/5790313890/job/15693180713?pr=3015 I'm not sure why this happens,...