paginated query with status
i want to use paginated query with status so it doesn't throw on backend error
5 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!
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
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:
usePaginatedQueryWithStatus
would be aaaawesome!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).