Alvi
Alvi2w ago

paginated query with status

i want to use paginated query with status so it doesn't throw on backend error
5 Replies
Convex Bot
Convex Bot2w ago
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!
erquhart
erquhart2w ago
Can you say a little more? The usePaginatedQuery() hook does provide status (docs) but I'm not sure that's what you're looking for
Alvi
AlviOP2w ago
i want a useQueryWithStatus equivalent for pagijated query, where if an error is thrown in the query function the client paginated hook doesn’t throw but it returns an error object
djbalin
djbalin3d ago
I am really interested in this as well. I just used query streams and they are wonderful @lee for merging a paginated query. However, I get the error Uncaught Error: Cannot union empty array of streams if the streams are empty, and it's not straightforward to handle this in the frontend. For now I put this check below in my query, but that's not a nice solution going forward:
if (submissionStreams.length === 0) {
return {
page: [] as AdminProfileSubmissionEnriched[],
isDone: true,
continueCursor: "null",
};
}
if (submissionStreams.length === 0) {
return {
page: [] as AdminProfileSubmissionEnriched[],
isDone: true,
continueCursor: "null",
};
}
usePaginatedQueryWithStatus would be aaaawesome!
lee
lee2d ago
you can use new EmptyStream(order, fields) or new SingletonStream(null, order, fields, field.map(() => null), []) to represent a stream with no elements. (the reason mergedStreams can't do that automatically is it doesn't know the order).

Did you find this page helpful?