Skip to main content

BlogPostContent

Representation of the content of a blog post

type BlogPostContent {
title: String
name: String
language: String!
preamble: String
content: JSON
createdAt: DateTime
updatedAt: DateTime
media: BlogPostMedia
authors: [Author!]
tags: [BlogTags!]
}

Fields

title ● String

Blog post visible title

name ● String

Internal name of the blog post

language ● String!

Language of the blog post

preamble ● String

Extra leading paragraph of the blog post

content ● JSON

Content of the blog post

createdAt ● DateTime

Time the blog post was created

updatedAt ● DateTime

Time the blog post was last updated

media ● BlogPostMedia

Blog post media

authors ● [Author!]

The people involved in making the blog post

tags ● [BlogTags!]

Tags for the blog post

Example

{
"createdAt": "2024-05-03T11:52:33Z",
"media": {
"primaryImage": {
"link": [
{
"url": {
"language": "EN",
"value": "String"
},
"alternateUrls": [
{}
],
"redirect": {}
}
]
}
},
"authors": [
{}
],
"tags": [
{}
]
}