mwilde

Results 5 comments of mwilde

@PascalSenn here is my schema and the mutation: schema { mutation: Mutation } type Mutation { setMyValue(input: SetMyValueInput!): SetMyValuePayload! } type SetMyValuePayload { errors: [UserError!]! } scalar UUID type UserError...

@PascalSenn the same error occurs if you have a collection of type Enum.

I had a similar issue. Two DTOs and both DTOs (different namespace) have a inner class with the same name. I found a fix where you should configure the SwaggerGen...