(@Args() args: LoginArgs)
| 12 | constructor(private readonly authService: AuthService) {} |
| 13 | @Mutation(() => UserInfo) |
| 14 | async login(@Args() args: LoginArgs): Promise<UserInfo> { |
| 15 | return this.authService.login(args.credentials); |
| 16 | } |
| 17 | |
| 18 | @Query(() => UserInfo) |
| 19 | @common.UseGuards(GqlDefaultAuthGuard, gqlACGuard.GqlACGuard) |
nothing calls this directly
no outgoing calls
no test coverage detected