@r1tsu/payload
Version:
16 lines (15 loc) • 412 B
JavaScript
const docWithFilenameExists = async ({ collectionSlug, filename, req })=>{
const doc = await req.payload.db.findOne({
collection: collectionSlug,
req,
where: {
filename: {
equals: filename
}
}
});
if (doc) return true;
return false;
};
export default docWithFilenameExists;
//# sourceMappingURL=docWithFilenameExists.js.map