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
Cursors created by stream().query().paginate() call convexToJson on the index keys.
Index keys are typed as Value[] but actually they're (Value | undefined)[] -- it can be undefined if an indexed field is missing from some document. Handle this in types and in the cursor serde.
The text was updated successfully, but these errors were encountered:
Cursors created by
stream().query().paginate()
callconvexToJson
on the index keys.Index keys are typed as
Value[]
but actually they're(Value | undefined)[]
-- it can beundefined
if an indexed field is missing from some document. Handle this in types and in the cursor serde.The text was updated successfully, but these errors were encountered: