Skip to content

Instantly share code, notes, and snippets.

@eduardopc
Created December 14, 2020 04:07
Show Gist options
  • Save eduardopc/a328477e288dbb74e82e1ec0d8dac534 to your computer and use it in GitHub Desktop.
Save eduardopc/a328477e288dbb74e82e1ec0d8dac534 to your computer and use it in GitHub Desktop.
import { buildSchema } from 'type-graphql';
import path from 'path';
const schema = buildSchema({
resolvers: [path.join(__dirname, './animals', `**/*-resolver.*s`)],
validate: false,
});
export default schema;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment