Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@Body #26

Closed
gavinwilliams opened this issue Jun 5, 2018 · 3 comments
Closed

@Body #26

gavinwilliams opened this issue Jun 5, 2018 · 3 comments

Comments

@gavinwilliams
Copy link

Is there any way to add @Body to this library for the args param. Finding it frustrating having to convert POJO's from inputs to TypeScript classes.

@cschroeter
Copy link

cschroeter commented Jun 8, 2018

Have a look at class-transformer-validator

So you can do something like

  @Mutation('createUser')
  async createUser(obj, args, context): Promise<User> {
    try {
        const user: User = await transformAndValidate(User, args.input);
        // ... persists user and return
    } catch (error) {
       throw new BadRequestException()
    }
  }

@gavinwilliams
Copy link
Author

👌just what I was looking for!

@lock
Copy link

lock bot commented Apr 25, 2020

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@lock lock bot locked as resolved and limited conversation to collaborators Apr 25, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants