0
When I have a query:
{
postsCollection(first: 10) {
pageInfo {
hasNextPage,
hasPreviousPage,
startCursor,
endCursor
}
edges {
cursor
node {
id
title
}
}
}
}
I return only the next and previous cursors. I need to know how many pages there are in total. Furthermore, how can I navigate to an arbitrary page, for example page 3?