You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
generates cursors for the records w/o the distinct == or = suffixes (e.g. "W251bGwsMjYxNzRd")
im not sure if this in and of itself is an issue, but trying to use these cursors in further pagination calls always returns empty page data regardless of what combination of first/after or last/before i use.
the following are the cursors of the first three records i get back with a simple first: 3
W251bGwsMjYxNzRd
W251bGwsMjYxNzNd
W251bGwsMjYxNzFd
if i use first: 1 with after pointing to the 1st record, i get has_previous_page = true and has_next_page = false
if i use last: 1 with before pointing to the 2nd record, i get has_previous_page = false and has_next_page = true
similarly wonky results occur when i use other combinations
generates cursors for the records w/o the distinct
==
or=
suffixes (e.g. "W251bGwsMjYxNzRd")im not sure if this in and of itself is an issue, but trying to use these cursors in further pagination calls always returns empty
page
data regardless of what combination offirst
/after
orlast
/before
i use.e.g.
The text was updated successfully, but these errors were encountered: