| 1 | type BlogPost { |
| 2 | |
| 3 | appreciationCount: Int! |
| 4 | |
| 5 | categories: [BlogCategory] |
| 6 | |
| 7 | content: String! |
| 8 | |
| 9 | externalAuthorBio: String |
| 10 | |
| 11 | externalAuthorName: String |
| 12 | |
| 13 | featuredImage: BlogPostFeaturedImage! |
| 14 | |
| 15 | featuredImageAuthorAvatarUrl: String |
| 16 | |
| 17 | featuredImageAuthorLocation: String |
| 18 | |
| 19 | id: Int! |
| 20 | |
| 21 | keywords: [String] |
| 22 | |
| 23 | publishedOn: String! |
| 24 | |
| 25 | slug: String! |
| 26 | |
| 27 | status: String! |
| 28 | |
| 29 | summary: String! |
| 30 | |
| 31 | tagLine: String |
| 32 | |
| 33 | title: String! |
| 34 | |
| 35 | updatedOn: String |
| 36 | |
| 37 | } |