return author name only

This commit is contained in:
Hongbo Wu
2024-06-18 16:59:22 +08:00
parent fa3e6fe341
commit 5d07e554e2
6 changed files with 36 additions and 17 deletions

View File

@ -3343,11 +3343,11 @@ const schema = gql`
id: ID!
title: String!
content: String!
author: User!
author: String!
ownedByViewer: Boolean!
thumbnail: String
thought: String
libraryItems: [Article!]!
libraryItems: [Article!]
highlights: [Highlight!]
createdAt: Date!
updatedAt: Date!
@ -3374,6 +3374,7 @@ const schema = gql`
enum CreatePostErrorCode {
UNAUTHORIZED
BAD_REQUEST
}
input UpdatePostInput {