GitHub GraphQL API Starred Repositories Examples With Pagination
You can play with the GraphQL API live here. It's pretty nice and has autocompletion based on the GraphQL schema.
The first example gets your first 3 starred repos, the cursor values can be used for pagination.
Here's an example response from the first query:
{
"data": {
"viewer": {
"login": "obahareth",
"name": "Omar Bahareth",
"starredRepositories": {
"edges": [
{
"cursor": "Y3Vyc29yOnYyOpLOAKYOHs4Apg4e",
"node": {
"id": "MDEwOlJlcG9zaXRvcnkxMjcyMzQx",
"name": "google-spreadsheet-javascript",
"primaryLanguage": {
"id": "MDg6TGFuZ3VhZ2UxNDA=",
"name": "JavaScript",
"color": "#f1e05a"
}
}
},
{
"cursor": "Y3Vyc29yOnYyOpLOAKYOH84Apg4f",
"node": {
"id": "MDEwOlJlcG9zaXRvcnk2ODEwMTQw",
"name": "howdoi",
"primaryLanguage": {
"id": "MDg6TGFuZ3VhZ2UxNDU=",
"name": "Python",
"color": "#3572A5"
}
}
},
{
"cursor": "Y3Vyc29yOnYyOpLOALeGxM4At4bE",
"node": {
"id": "MDEwOlJlcG9zaXRvcnkzNDE2MjY=",
"name": "octopress",
"primaryLanguage": {
"id": "MDg6TGFuZ3VhZ2UxNDE=",
"name": "Ruby",
"color": "#701516"
}
}
}
]
}
}
}
}
If we add in the third cursor's value as the second example's after
, we'll get the next 3 starred repositories after it.
e.g.
starredRepositories(first: 3, after: "Y3Vyc29yOnYyOpLOALeGxM4At4bE")
What if someone clicked random page number in pagination UI instead of Next how would we handle this with cursor..??
Problem : i am implementing GraphApi with Search Queries what i want is Numbering Pagination with Next & Previous Button
Next & Previous Button Work With a Cursor With After Cursor value for next Button & Before for previous
But when I Click on a random Number from 1 to 10 how to Manage this..? If somehere have implemented this. @obahareth