findDocument 🆕
Find documents by props. Case Insensitive. Returns undefined, if document was not found.
Signature
findDocument(session: MySQLSession, props: Partial<IDocument<S>>): Promise<IDocument<S> | undefined>;
findDocument(session: MySQLXSession, props: Partial<IDocument<S>>): Promise<IDocument<S> | undefined>;
Example
// employeeRouter.{ts|js}
import { employeeController } from './employeeController';
const transacted = true;
await db.usingSession(async (session) => {
const employeeId = '<id>';
const data = await employeeController.findDocument(session, { employeeId });
return data;
}, transacted);
// employeeRouter.{ts|js}
import { employeeController } from './employeeController';
const transacted = true;
await db.usingSession(async (session) => {
const employeeId = '<id>';
const data = await employeeController.findDocument(session, { employeeId });
return data;
}, transacted);