Jiri Spac
Jiri Spac
Why would anyone need to install this module when it comes bundled with npm?
would be nice to be able to remove it. At the moment I do it quite complexly- I remove the package, remove postinstall hook and install the package again.
**Is your feature request related to a problem? Please describe.** yes. When this is used in webpack without tranpilation it breaks. **Describe the solution you'd like** entry point should be...
as it was before it was a bit confusing. This example would have worked much better if the TODO left in code about passing the return value was implemented. Then...
currently if you want to handle dates correctly for a field, you need to explicitly use a scalar, like this: ```js @Field({ type: GraphQLDateTime }) created_at: Date ``` since this...
I have a field like this: ```js @Field({ type: UserEventModel }) async inviteUser( @Context ctx: UserSessionModel, userId: number, attending: boolean, sendInviteEmail: boolean = true ): Promise { ... some implementeation...
similar to what type-graphql [has](https://19majkel94.github.io/type-graphql/docs/browser-usage.html). It would be nice to be able to reuse input classes on frontend.