Article Object
Description
Represents a blog post, page, or article with content and metadata.
Declaration
type Article {
_id: ID!
id: Int!
created: Date
modified: Date
published: ArticlePublished
url: String
seo: SeoEntry
private: Boolean
content: ArticleContent!
homepage: Boolean
thumbnail: Media
title: String!
type: ArticleType
tags: [String!]!
handle: String!
}
Fields
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
id | Int! | Numeric identifier for the article. |
created ⚠️ | Date | Creation date of the article. ⚠️ Deprecated: No longer supported |
modified ⚠️ | Date | Last modification date of the article. ⚠️ Deprecated: No longer supported |
published | ArticlePublished | Publication status and date. |
url | String | URL path to the article. |
seo | SeoEntry | SEO metadata for the article. |
private | Boolean | Whether the article is private and requires authentication. |
content | ArticleContent! | Article content in various formats. |
homepage | Boolean | Whether this article is set as the homepage. |
thumbnail | Media | Thumbnail image for the article. |
title | String! | Title of the article. |
type | ArticleType | Type of article content format. |
tags | [String!]! | Tags associated with the article. |
handle | String! | URL-friendly handle for the article. |