Patrick Arminio
Patrick Arminio
Currently our schema printer is hacked on top of GraphQL-core's printer to add support for custom schema directives, default values for JSON scalar (and similar) and probably more stuff. We...
I'll add a proper description later, this PR is just for testing the CI steps. Related: #2107 TODO: - [x] assert that documentation exists (via pytest) - [x] make all...
From: https://github.com/strawberry-graphql/strawberry/pull/2012
In python 3.10 you can use `slots=True` when applying the dataclasses decorator see https://docs.python.org/3.10/whatsnew/3.10.html#slots ```python from dataclasses import dataclass @dataclass(slots=True) class Birthday: name: str birthday: datetime.date ``` we should think...
Myst seems quite interesting, it does support some stuff we have already built: https://myst-parser.readthedocs.io/en/latest/syntax/syntax.html Maybe we can start using it and update the website to use a parser for myst...
So, I've been thinking a bit about our `strawberry.union` function, and while I think it provides a good API, we can't unfortunately make it properly type safe. Currently the way...
## General - [x] Getting started (https://strawberry.rocks/docs/) - [x] Schema Basic (https://strawberry.rocks/docs/schema-basics) - [x] Query Basics @jaydenwindle (https://strawberry.rocks/docs/queries) - [x] Mutation Basics (https://strawberry.rocks/docs/mutations) - [x] Subscriptions Basics - [x] Why...
This PR refactors the HTTP tests to remove code duplication. Working on this PR also surfaced some inconsistencies and missing features between the integrations. To make this PR I created...
Just summarising the discussion around how we can approach `info` and `root`/`self` params in resolvers. Other than the potential `root`/`self` confusion (which we can discuss again in another issue), we...
We got this bug report on our docs page: > Cannot get this to run on Windows. When I issue the 'strawberry server schema' command in git bash, it just...