Articles
Contains blog article data, allowing creation, update, retrieval, and deletion of article content.
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
A unique numeric identifier for the article. | |
| BlogId [KEY] | Long | False |
Blogs.Id |
A unique numeric identifier for the blog that contains the article. |
| AdminGraphqlApiId | String | True |
The Admin GraphQL API identifier associated with the article. | |
| Author | String | False |
The name of the author who wrote the article. | |
| BodyHtml | String | False |
The full text of the article body, including HTML formatting and markup. | |
| CreatedAt | Datetime | True |
The date and time when the article was created. | |
| Handle | String | False |
A human-readable unique string automatically generated from the article title, used in the article's URL. | |
| ImageAlt | String | False |
Alternative text describing the associated image for accessibility or SEO purposes. | |
| ImageCreatedAt | Datetime | True |
The date and time when the associated image was created. | |
| ImageHeight | Int | False |
The height of the article image in pixels. | |
| ImageSrc | String | False |
The URL where the article image is hosted. | |
| ImageWidth | Int | False |
The width of the article image in pixels. | |
| ImageAttachment | String | False |
The Base64-encoded binary data representing an image attached to the article. | |
| PublishedAt | Datetime | False |
The date and time when the article was published. | |
| SummaryHtml | String | False |
A short summary of the article content, including HTML formatting. | |
| Tags | String | False |
A comma-separated list of tags used to categorize or describe the article. | |
| TemplateSuffix | String | False |
The suffix of the Liquid template used to render the article. Returns null if the default article.liquid template is used. | |
| Title | String | False |
The title of the article. | |
| UpdatedAt | Datetime | True |
The date and time when the article was last updated. | |
| UserId | Long | True |
A unique numeric identifier for the user who authored the article. | |
| PublishedStatus | String | False |
Specifies the publication status of the article. Possible values are 'published', 'unpublished', and 'any'. The default is 'any'. The allowed values are published, unpublished, any. |