Patrick Arminio
Patrick Arminio
Hi @adamchainz 👋 would be possible to get support for `time.monotonic_ns`? I can try to send a PR if you give me some pointers, I'm not really familiar with c...
Allows to use a promise when using the custom handler
Hi there! Thanks for this plugin, it has been really helpful, sometimes I get issues on CI that I don't get locally, for example: ``` E pytest_mypy_plugins.utils.TypecheckAssertionError: Critical error occurred...
This PR changes the default for `default` and `default_factory` to `dataclasses.MISSING` to allow using `UNSET` as default when doing something like this: ```python @strawberry.input class FilterInput: in_: Optional[str] = strawberry.field(name="in",...
Hi folks :) I've been thinking that maybe at some point we should add **first class** support for Pydantic. ## What does **first class** support mean? Currently we support Pydantic...
Python's type system provides a way to type dictionaries, using `TypedDict`, for example: ```python class Point2D(TypedDict): x: int y: int label: str a: Point2D = {'x': 1, 'y': 2, 'label':...
This PR will fix an issue that doesn't allow you from using Enums that use `enum_value` for defining their value. The issue comes from `Enum(...)` trying to find the enum...
A common use case is to convert types to dicts, which we already support through dataclasses.asdict. We should expose `asdict` via the strawberry namespace, so we can make sure there's...
We've been discussing the API for custom fields quite a bit on discord, I'll summarize some of the thoughts here. # Goal We want to allow users of Strawberry to...