Pagination
Forward Pagination
Example:
{
viewer{
username
organization {
plans(first: 2) {
pageInfo{
hasNextPage
endCursor
}
edges {
cursor
node {
name
}
}
}
}
}
}Last updated
Was this helpful?