Merged
requested to merge github/fork/antonio-petricca/graphql-nodejs-express-server-enums-generation into master
Created by: antonio-petricca
This PR fixes the missing enums values generation for GraphQL NodeJS Express Server as described in https://github.com/OpenAPITools/openapi-generator/issues/5815 .
Previous output:
enum MyEnum {
}
Fixed output:
enum MyEnum {
OPTION_1
OPTION_2
}