Data Paginations Across Multiple Services

I have 4 individual microservices and a dashboard that has 5 tabs. Each tab corresponds to data from the four services, with the fifth tab being a consolidated list of the other four. Each tab has the same set of fields and there is no key to relate the 4 services.
Currently each of the 4 services are defined as independent Graphql queries as separate types and I use a custom Graphql query that just has the 4 other queries to fetch all data.

Is there a way to get data from all 4 services and paginate or filter before sending the response?