Paul Pukach
Results
2
comments of
Paul Pukach
Hello, @samarthkathal , @jkimbo I'm having an issue with the described method of using an input type of `List(MyInputType)`. Roughly, my code looks like this: ```python class MyInputType(graphene.ObjectType): id =...
@samarthkathal , @jkimbo , Just figured it out. Custom input types should inherit from `graphene.InputObjectType` instead of `graphene.ObjectType`. Changed to `MyInputType(graphene.InputObjectType` and it worked like a charm