Uzyskaj wszystkie pola maszynopisji schematu Mongoose
export const getFieldsFromSchemas = <T extends { paths: { [key: string]: SchemaType<any> } }>(schema: T): string[] => {
return Object.keys(schema.paths);
};
Husnain Syed