const existing = await req.payload.find({
collection: 'users',
where: { email: { equals: email } },
limit: 1,
overrideAccess: true,
req,
});
In this code, is it still required to send the req object in the options?
Is it already prefilled because I'm typing req.payload.find?