ignormies

Results 27 comments of ignormies

This issue been added to the v1 milestones, but what I'm having trouble parsing the following from the discussion: * What was the conclusion on using the python Enum value...

I'm a _much_ bigger fan of the class-oriented declaration style over the function-oriented style. It feels more Pythonic to me, and as @peniqliotuv says, it feels closer to the dataclass...

> > enumeration types are a special kind of scalar that is restricted to a particular set of allowed values. [[link](https://graphql.org/learn/schema/#enumeration-types)] > > and Python enums are a mapping from...

> We could make this more magic by detecting the type of root, for example: Is this feasible? Isn't it be possible to have a resolver accept an argument of...

Just occurred to me that we should also probably adjust the removal date to be one month after PR close before we merge this, so that users actually get a...

Very cool! I'm wondering if it could be useful to do something like: ```python from enum import auto, Flag class DocstringDescriptions(Flag): NONE = auto() TYPES = auto() RESOLVERS = auto()...

Thanks for adding these great tests! I think we're almost there. Let me know what you think of my replies to the other comments :+1: cc @patrick91 to take a...