OBJECT

BlogPost

link GraphQL Schema definition

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