graphene-django-extras
graphene-django-extras copied to clipboard
fix results None with PageGraphqlPagination
Backward compatibility with client when using PageGraphqlPagination
Issue:
//client
query {
users {
totalCount
results {
id
}
}
}
Output:
//old version
{
totalCount: 1,
users: {
id: 123
}
}
//new version (0.5.2)
{
totalCount: 1,
users: null
}