Delete a document by multiple fields??
name: v.string(),
email: v.string(),
imgUrl: v.string(),
document: v.id("documents"),We can delete the document using
ctx.db.delete(id);But I want to delete document where email=something and document=something
How to achieve this??
