File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1717- Added @InterfaceType decorator - [ #46 ] ( https://github.com/indigotech/graphql-schema-decorator/pull/46 ) - [ @felipesabino ] ( https://github.com/felipesabino )
1818- Added @After middleware decorator - [ #56 ] ( https://github.com/indigotech/graphql-schema-decorator/pull/56 ) - [ @marcelorisse ] ( https://github.com/marcelorisse )
1919- Bugfix - @After middleware changing return type - [ #58 ] ( https://github.com/indigotech/graphql-schema-decorator/pull/58 ) - [ @felipesabino ] ( https://github.com/felipesabino )
20+ - Removed wrong comparison on description - [ #60 ] ( https://github.com/indigotech/graphql-schema-decorator/pull/60 ) - [ @askmon ] ( https://github.com/askmon )
2021
2122### Breaking changes
2223
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ export class OrderByTypeFactory {
1010 let valuesDict : { [ name : string ] : any ; } = { } ;
1111 values . forEach ( ( value : any ) => {
1212 valuesDict [ value . name ] = {
13- description : value . description && value . description ,
13+ description : value . description ,
1414 } ;
1515 } ) ;
1616 return new GraphQLEnumType ( {
You can’t perform that action at this time.
0 commit comments