Patrick Arminio

Results 162 issues of Patrick Arminio

We have strawberry.Private to hide field, but I was wondering if we should automatically hide fields that start with a underscore, since it is a common convention in Python to...

From https://github.com/strawberry-graphql/strawberry/pull/3389 We should allow users to do things like this: ```python import strawberry from starlette.datastructures import UploadFile @strawberry.type class Mutation: @strawberry.mutation class upload(self, file: UploadFile) -> str: return "ok"...

feature-request

This is a draft for a better structure for the docs, feel free to come up with suggestions: 1. Getting Started - Installation - Editor Setup - Hello world 2....

area: docs

[As suggested here](https://github.com/strawberry-graphql/strawberry/issues/1294) we should allow to have code blocks that can run as is, to make it easier to check them we should have github action that runs them....

Pretty much the title, when creating an extension: ```python class Extension: def resolve( self, _next, root, info: Info, *args, **kwargs ) -> AwaitableOrValue[Any]: return _next(root, info, *args, **kwargs) ``` `info`...

thanks to @cache-missing for the report! This: ```python import strawberry @strawberry.input class InputData: name: str = "10" @strawberry.type class Query: @strawberry.field def example(self, data: InputData = InputData()) -> str: return...

Yesterday I was playing around with implementing support for `@stream` (and indirectly, for `@defer`) Firstly, the work will be based on #3076, since it adds quite all the fundamentals we...

feature-request

It would be nice to have some (configurable) validation: - Title missing - OG missing - X missing - Images not working - Canonical URL missing Not sure what else...

This PR changes the whole structure of autopub based on what we discusses in #30. There's a new CLI (powered by typer and rich) that's going to be the frontend...

Hi everyone, I wanted to write this a long time ago. I've been using autopub for a while on Strawberry's repo and I think it is time to think about...