Skip to content

Commit

Permalink
docs(models): correct description
Browse files Browse the repository at this point in the history
  • Loading branch information
MrOrz committed Oct 25, 2023
1 parent 1bb99c7 commit 5636d7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/graphql/models/ArticleReply.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export default new GraphQLObjectType({

createdAt: {
type: GraphQLString,
description: 'May be null for legacy articles',
description: 'May be null for legacy article-replies',
},
updatedAt: { type: GraphQLString },
}),
Expand Down
2 changes: 1 addition & 1 deletion src/graphql/models/Reply.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const Reply = new GraphQLObjectType({
},
createdAt: {
type: GraphQLString,
description: 'May be null for legacy articles',
description: 'May be null for legacy replies',
},
text: { type: GraphQLString },
type: { type: new GraphQLNonNull(ReplyTypeEnum) },
Expand Down

0 comments on commit 5636d7a

Please sign in to comment.