Patrick Arminio
Patrick Arminio
Is there a way to hide all the ouput while using the `pattern` option? I've tried this: ```python class Starter(ProcessStarter): env = {"PYTHONUNBUFFERED": "1", **os.environ} pattern = BOOT_MSG popen_kwargs =...
Feel free to suggest examples we should provide, I'd start with some ideas: - [ ] Dataloaders - [ ] Subscriptions - [ ] Basic examples for ASGI, Flask and...
We are still missing the equivalent of the check in coerce value Mostly based on https://github.com/graphql/graphql-js/pull/3513/files Closes #2421 #2560 TODO: - [x] Check print of schema directive - [x] Test...
This snippet is broken, because we don't check nested type var, we have done something similar here: https://github.com/strawberry-graphql/strawberry/pull/3463 ```python import strawberry @strawberry.type class Wrapper[T]: value: T @strawberry.type class BlockRow[T]: item:...
Pretty much what's written here: https://github.com/strawberry-graphql/strawberry/pull/3463/files#diff-9db4ecb0b6a9104731da4af6d847961cbc88e4085f4f23f4fcfceb1b22e2fd35R456-R464 ## Upvote & Fund - We're using [Polar.sh](https://polar.sh/strawberry-graphql) so you can upvote and help fund this issue. - We receive the funding once the...
Closes #3289 Not 100% sure if this is the best way to do this, we might need to refactor some of these parts in future 😊
Needs validation and configuration options
The Stellate extension for Strawberry needs some information from the request: https://github.com/StellateHQ/stellate-strawberry/blob/9a2305789b1d9cd8c3ce8326e194635bb73fffbe/stellate_strawberry/__init__.py#L66-L82 but I'm not totally sure it will work with all integrations, so I was wondering if we could...
What is `self.execution_context.errors` on an extension, is it needed? (we have errors on the result) Related: https://github.com/StellateHQ/stellate-strawberry/pull/6 ## Upvote & Fund - We're using [Polar.sh](https://polar.sh/strawberry-graphql) so you can upvote and...
```python class User(pydantic.BaseModel): age: int password: Optional[str] @strawberry.experimental.pydantic.type(User) class UserType: age: strawberry.auto | None ``` ## Upvote & Fund - We're using [Polar.sh](https://polar.sh/strawberry-graphql) so you can upvote and help fund...