Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## master

- Removed wrong comparison on description - [#60](https://github.com/indigotech/graphql-schema-decorator/pull/60) - [@askmon](https://github.com/askmon)
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's ordered from oldest to newest.

- Added functional tests (to make sure resolvers are working properly) - [#34](https://github.com/indigotech/graphql-schema-decorator/pull/34) - [@felipesabino](https://github.com/felipesabino)
- Review JSDoc for each decorator and its option argument - [#34](https://github.com/indigotech/graphql-schema-decorator/pull/34) - [@felipesabino](https://github.com/felipesabino)
- Updated examples - [#34](https://github.com/indigotech/graphql-schema-decorator/pull/34) - [@felipesabino](https://github.com/felipesabino)
Expand Down
2 changes: 1 addition & 1 deletion src/type-factory/order-by.type-factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class OrderByTypeFactory {
let valuesDict: { [name: string]: any; } = {};
values.forEach((value: any) => {
valuesDict[value.name] = {
description: value.description && value.description,
description: value.description,
};
});
return new GraphQLEnumType({
Expand Down