Show author photo in metadata section

This commit is contained in:
realaravinth
2021-11-02 13:40:13 +05:30
parent 26722e5a52
commit 133c4a96b3
4 changed files with 56 additions and 11 deletions

View File

@ -5,6 +5,7 @@ query GetPost($id: ID!) {
creator {
name
id
imageId
}
content {
bodyModel {

View File

@ -49,7 +49,7 @@ type BodyModel { paragraphs: [Paragraphs! ]! }
type Content { bodyModel: BodyModel! }
type User { id: String! name: String! }
type User { id: String! name: String! imageId: String! }
type Post {
id: ID!