RJR
Convex Community3y ago
1 reply
RJ

Minor documentation error

The example for db.replace in https://docs.convex.dev/database/writing-data#updating-existing-documents is incorrect. It looks like this:

db.replace("tasks", id, {tag})


but should be:

db.replace(id, {tag})
Was this page helpful?