Offset-based pagination returns NULL
I'm trying to implement offset-based pagination however almost every query returns
null
. Random access works fine. Getting the total count gives me a number greater than the number of records in the table. I've "repaired" my aggregates. Setting the offset to a high value sometimes returns a result but seems to be a random field from the record.13 Replies
Thanks for posting in <#1088161997662724167>.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.
- Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
- Use search.convex.dev to search Docs, Stack, and Discord all at once.
- Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI.
- Avoid tagging staff unless specifically instructed.
Thank you!
convex/convex.config.ts
convex/migrations.ts
My query for random access works:
However trying to use offset based pagination does not because the result of pageOfAlphabeticalItems.at
is null
:
hmm this code looks to me like it should work. few questions:
- can you share the definitions for each aggregate (in particular the
sortKey
and namespace
)?
- what exactly is null
, the key
or the item
?
- is "Getting the total count gives me a number greater than the number of records in the table" still true after you repair aggregates?
- are you using triggers or some other method to keep the aggregate in sync with the table?Hi @Lee !
The
key
is null, which causes item
to also be null
.
Here is my TableAggregate for random access – this does work:
Here is my TableAggregate for offset based pagination for alphabetical items:
I've tried repairing the aggregates but the count is still incorrect, which is suspicious to me.🤔 and is the "items" table changing?
Nope!
I just tried examining the result of
await pageOfAlphabeticalItems.at(ctx, 0, {namespace: namespace});
rather than destructuring it and it looks like I do get a valid id
and sumValue: 0
But looking at the item with the returned id
I can see it is definitely not being sorted by name as I'd have expectedoh...
should be
ah I see. Does this mean I need to repair my aggregates again too?
I think so. I'll give that a try.
Aggregates repaired and it looks like its working now, thanks!
🥳 i internally raised the question of whether convex should do something to forestall this issue
Is it possible to specify reverse sort order?
You could find an order-reversing encoding. But can you explain why you want to? Most of the aggregate methods can be inverted
I want to be able to paginate through items in alphabetical order and reverse alphabetical order
(or most popular to least popular vs. least popular to most popular)
sounds doable
aggregate.at(ctx, -1, { namespace })
gets the item at the end, for example
and then you can do const item = await ctx.db.query("items")
.withIndex("by_category_name", (q) => q.eq("category", namespace).lte("name", key)).order("desc")
.first();