Theo Ribeiro
Theo Ribeiro
DTDrizzle Team
Created by Jay on 6/12/2024 in #help
Multiple files schemas with query to Access data
you could create a file to aggregate all your schemas. This file would simply re-export each and every separate schema you have, then all you have to do in every instance is to import this one file: schema.ts
export * from './schema1';
export * from './schema2';
export * from './schema1';
export * from './schema2';
2 replies