Hello. I'm trying out Nexus and taking advantage o...
# orm-help
v
Hello. I'm trying out Nexus and taking advantage of
extendType({...})
. this of course is causing my number of imports to grow substantially. Is there a way to load types from glob?
Copy code
const schema = makePrismaSchema({
  types: [__dirname + './resolvers/**/*.resolver.ts'] // <---- I'd like to load types from glob
  ...
})