Sergio Melendez

Results 4 comments of Sergio Melendez

@spockNinja I'm trying to use something similar to this: ``` class User(DjangoObjectType): class Meta: model = auth_models.User filter_fields = ('email', ) interfaces = (Node, ) connection = UserConnection class UserConnection(Connection):...

@eamigo86 how does it look to you?

Seems like this was solved here: https://github.com/graphql-python/graphene-django/issues/304

FYI: ``` class UserConnection(Connection): extra = graphene.String() class Meta: abstract = True class User(DjangoObjectType): class Meta: model = auth_models.User filter_fields = ('email', ) interfaces = (Node, ) connection_class = UserConnection...