0
How to create pagination in supabase with graphql. When I have query:
{
postsCollection(first: 10)
{
pageInfo {
hasNextPage,
hasPreviousPage,
startCursor,
endCursor
}
edges {
cursor
node {
id
title
}
}
}
}
I return olny coursor next and previus and I don’t know how many page is in pagination and next whan I want go to eq third page, how to doing this ?