Hello! I use tables with GraphQL query results as resource for them. And I have one problem. I need to use server-side pagination with GQL relay-based server-side pagination, but I can't because I need to show total count of rows and pages in the table, but it's possible only for limit offset pagination.
I need this:
I have with GQL relay:
For limit-offset pagination I have field "Total count" and using this I can make table comfortable
I need the same for GQL relay pagination, because I have totalCount in GQL response
totalCount
pageInfo {
startCursor
endCursor
hasPreviousPage
hasNextPage
}
Thank you