Created
December 14, 2020 04:07
-
-
Save eduardopc/a328477e288dbb74e82e1ec0d8dac534 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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