Patrick Arminio
Patrick Arminio
So, you can pass `--device mps` to make it work on mX macs, but I wonder if it wouldn't be nicer to automatically detect that? :)
Right now the CLI is polluted with these warnings:  We should either fix them or hide them 😊
I noticed that the imports take quite a bit of time to load, I think it would be cool to load them only when using them, so that the cli...
Looks like Codecov is still failing a lot, we send coverage info for every single test, I think it would be best to collect all the coverage and then send...
This is a new protocol created by Apollo (and supported by Apollo Client) # TODO - [x] Add support for this in all HTTP integrations that support subscriptions - [x]...
This is how you create a custom scalar now: ```python import base64 from typing import NewType import strawberry Base64 = strawberry.scalar( NewType("Base64", bytes), serialize=lambda v: base64.b64encode(v).decode("utf-8"), parse_value=lambda v: base64.b64decode(v).encode("utf-8"), )...
Might be worth implementing this upcoming feature, unions are not allowed in input types and this is a good alternative to that, also should be easy to implement in code...
Now that we Litestar support I think we can deprecate Starlite 😊 ```[tasklist] ### Tasks - [ ] Add notice in the docs - [ ] Use typing_extensions.deprecated to mark...
as suggested in https://github.com/strawberry-graphql/strawberry/pull/2698#issuecomment-1631030171 we should change strawberry's schema config to be a type dictionary, I think this will make the dx a bit nicer, since you can do this:...
I'm opening a new issue to spec-out the API, and also write down what should we take into account to make this happen. Visibility filters will be a feature that...