ibrahimyaacob
ibrahimyaacob4w ago

unable to delete many

This is my action's handler
const commentIds = duplicateComments.map((comment) => comment._id);
// Delete comments in batches of 20
for (let i = 0; i < commentIds.length; i += 20) {
const batch = commentIds.slice(i, i + 20);
if (batch.length > 0) {
try {
await ctx.runMutation(
api.functions.socialPostCommentsAdmin.deleteFromTableComments,
{
commentIds: batch,
},
);
} catch (error) {
console.error(`Error deleting comments ${batch}:`, error);
}
}
}
const commentIds = duplicateComments.map((comment) => comment._id);
// Delete comments in batches of 20
for (let i = 0; i < commentIds.length; i += 20) {
const batch = commentIds.slice(i, i + 20);
if (batch.length > 0) {
try {
await ctx.runMutation(
api.functions.socialPostCommentsAdmin.deleteFromTableComments,
{
commentIds: batch,
},
);
} catch (error) {
console.error(`Error deleting comments ${batch}:`, error);
}
}
}
and the mutation
export const deleteFromTableComments = mutation({
args: {
commentIds: v.array(v.id("socialPostComments")),
},
handler: async (ctx, args) => {
const { commentIds } = args;
const deleteCommentPromise = commentIds.map(async (id) => {
try {
await ctx.table("socialPostComments").getX(id).delete();
} catch (error) {
console.error(`Error deleting comments ${id}:`, error);
}
});
const deletedComments = await Promise.all(deleteCommentPromise);

return deletedComments;
},
});
export const deleteFromTableComments = mutation({
args: {
commentIds: v.array(v.id("socialPostComments")),
},
handler: async (ctx, args) => {
const { commentIds } = args;
const deleteCommentPromise = commentIds.map(async (id) => {
try {
await ctx.table("socialPostComments").getX(id).delete();
} catch (error) {
console.error(`Error deleting comments ${id}:`, error);
}
});
const deletedComments = await Promise.all(deleteCommentPromise);

return deletedComments;
},
});
` and apparently im getting this error.
Uncaught Error: undefined is not a valid Convex value (present at path [0] in original object
Uncaught Error: undefined is not a valid Convex value (present at path [0] in original object
complete error log below
3 Replies
Convex Bot
Convex Bot4w 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!
ibrahimyaacob
ibrahimyaacobOP4w ago
here's the full error logs
'Error deleting comments md779qc7t4cwb44jb4vy0rg12n7bx3jb,md7es7zawnszp3dwyxpgefx3hs7bwt8n,md7bat2bgkcq1be1s26b46xkkh7bw412,md78mpsgd854haewjxbs2pbc1n7bx97e,md7ewqjjqvc0tqkr1rtjff6y457bweb9,md73z31tgjgyzh3db8nvsvfgjx7bxz6v,md7c0akajzsfedwbqq9ksnsd597bx3b3,md78hynqg8sy5cz2sqpc9kndwd7bwfd1,md7bkh1nb4vm50yaap2p7cbwtx7bw3wy,md748dbsddxx5tpm8xrhk7s14h7bw6nr,md76rjnz4cvj7w6gfkwew0ezrx7bxe14,md76vmftvwsjsn7tqf6pc4gqx57bwgde,md7cd596byvcetmvtd9979fvv97bx4d7,md7b2cj6gg9389xdfk5pqxrer97bwfbk,md7f2q23w00vrhxb9694b981w97bxh1c,md76ca9p7vjj8ya8f846ah2w157bwpne,md75w6cf5x027kmjdhjkct8dks7bw45v,md751mgfqycvnw71mdjcjk3we97bw6wg,md78k8ere2xfhcradnnm6bk8k17bw9va,md77w8ef04terc3j0ch00dwj6s7btmd4:' [Error: Uncaught Error: undefined is not a valid Convex value (present at path [0] in original object ["undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined"]). To learn about Convex's supported types, see https://docs.convex.dev/using/types.
at convexToJsonInternal (../../node_modules/.pnpm/convex@1.17.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/convex/src/values/value.ts:287:6)
at <anonymous> (../../node_modules/.pnpm/convex@1.17.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/convex/src/values/value.ts:322:4)
at map [as map] (<anonymous>)
at convexToJsonInternal (../../node_modules/.pnpm/convex@1.17.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/convex/src/values/value.ts:320:29)
at convexToJson (../../node_modules/.pnpm/convex@1.17.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/convex/src/values/value.ts:417:0)
'Error deleting comments md779qc7t4cwb44jb4vy0rg12n7bx3jb,md7es7zawnszp3dwyxpgefx3hs7bwt8n,md7bat2bgkcq1be1s26b46xkkh7bw412,md78mpsgd854haewjxbs2pbc1n7bx97e,md7ewqjjqvc0tqkr1rtjff6y457bweb9,md73z31tgjgyzh3db8nvsvfgjx7bxz6v,md7c0akajzsfedwbqq9ksnsd597bx3b3,md78hynqg8sy5cz2sqpc9kndwd7bwfd1,md7bkh1nb4vm50yaap2p7cbwtx7bw3wy,md748dbsddxx5tpm8xrhk7s14h7bw6nr,md76rjnz4cvj7w6gfkwew0ezrx7bxe14,md76vmftvwsjsn7tqf6pc4gqx57bwgde,md7cd596byvcetmvtd9979fvv97bx4d7,md7b2cj6gg9389xdfk5pqxrer97bwfbk,md7f2q23w00vrhxb9694b981w97bxh1c,md76ca9p7vjj8ya8f846ah2w157bwpne,md75w6cf5x027kmjdhjkct8dks7bw45v,md751mgfqycvnw71mdjcjk3we97bw6wg,md78k8ere2xfhcradnnm6bk8k17bw9va,md77w8ef04terc3j0ch00dwj6s7btmd4:' [Error: Uncaught Error: undefined is not a valid Convex value (present at path [0] in original object ["undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined","undefined"]). To learn about Convex's supported types, see https://docs.convex.dev/using/types.
at convexToJsonInternal (../../node_modules/.pnpm/convex@1.17.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/convex/src/values/value.ts:287:6)
at <anonymous> (../../node_modules/.pnpm/convex@1.17.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/convex/src/values/value.ts:322:4)
at map [as map] (<anonymous>)
at convexToJsonInternal (../../node_modules/.pnpm/convex@1.17.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/convex/src/values/value.ts:320:29)
at convexToJson (../../node_modules/.pnpm/convex@1.17.3_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/convex/src/values/value.ts:417:0)
Convex Bot
Convex Bot4w ago
<@35h6nwr87agxv93r3r7a5v5a9fxnw28>: You're returning an array of undefined b/c the commentIds.map function isn't returning anything inside the tr{} block

Did you find this page helpful?