Concept Flow - Pagination with first and after
Start Query
Check 'first' parameter
Check 'after' cursor
Fetch items after cursor
Limit results to 'first' count
Return paginated results with pageInfo
End Query
The query starts by checking the 'first' count and 'after' cursor, then fetches items after the cursor limited by 'first', and returns results with pagination info.