pygraphy
pygraphy copied to clipboard
A modern Pythonic GraphQL implementation.
1. is_optional checking should and should only execute when ObjectValueNode. 2. playground can't fetch introspection correctly because of playground frontend graphql.js version not matched
I would like to contribute to a more flexible approach to graphql than graphql core offers. This lib seems the better option but it's still incomplete. Perhaps you could open...
I'm not sure if this will be useful to the library, but I've created a `paginated_field` decorator for my project to make it easier to create fields which support pagination...
I'm trying to add support for nested objects in my graph per the example below. But it seems that the nested objects are not parsed/read correctly? ```python class CommandResponseAttributes(Object): field_type:...
```python class FooBar(pygraphy.Union): members = (Foo, Bar) ``` is not clearer than ```python FooBar = typing.Union[Foo, Bar] ```