0.1.19 • Published 1 year ago

@guteres/nest-auth-modul v0.1.19

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

Installation

!!!! Only for GraphQL !!!!

Config

Add this to app.module.ts and rename database "set-your-db-here"

imports: [
    MongooseModule.forRoot('mongodb://localhost/set-your-db-here'),
    GraphQLModule.forRoot<ApolloDriverConfig>({
        driver: ApolloDriver,
        autoSchemaFile: 'schema.gql',
        sortSchema: true,
        debug: true,
        playground: true,
    }),
    AuthModule,
],

Guards

@UseGuards(JwtAuthGuard)