Forums
Home / Plugin: WPGraphQL / How can I write a Query for pagination(for custom post type and taxonomies)
(@selvamsubramanyam)
3 years, 9 months ago
Hi, We have written the below query to get a list of articles that are custom post types. Here I need help to add limits and pagination query.
query MyQuery { Articles { edges { node { id title } } } }