Content
Representation of full information for content on a webpage
type Content {
name: String
menu: PageMenu
language: String
content: JSON!
externalUrl: String
active: Boolean
meta: Meta
link: Link
updatedAt: DateTime
createdAt: DateTime
}
Fields
name ● String
The internal name of the content
menu ● PageMenu
In which menu should this content be displayed
language ● String
The language of the content
content ● JSON!
The full contents to be presented as a json object
externalUrl ● String
The external url of the content
active ● Boolean
Is the content active
meta ● Meta
The meta information of the content
link ● Link
The link to the content
updatedAt ● DateTime
When was the content last updated
createdAt ● DateTime
When was the content created
Example
{
"menu": {},
"meta": {
"title": [
{
"language": "EN",
"value": "String"
}
]
},
"link": {
"alternateUrls": [
{}
],
"redirect": {}
},
"updatedAt": "2024-05-03T11:52:33Z"
}