graphene-django-extras
graphene-django-extras copied to clipboard
Pagination Total Count in DjangoFilterPaginateListField
How can we have total count in DjangoFilterPaginateListField
, similar to DjangoListObjectField.
{
"data": {
"myModels": {
"results": [
{
id: 1
}
},
{
id: 2
}
],
"totalCount": 2
}
}
}
and
{
"data": {
"myModels": [
{
id: 1
}
{
id: 2
}
],
"myModelstotalCount": 2
}
}