OBJECT
Article
link GraphQL Schema definition
- type Article implements Node {
- : ID!
- : String!
- : String!
- : Time
- : String
- : String
- # The description of the article, either from the RSS feed or the opengraph meta
- # tag
- : String
- # The AI generated summary of the article
- : String
- # The Cloudflare CDN url of the image
- : String
- # The original image URL from the RSS feed or the opengraph meta tag
- : String
- # The raw HTML content of the article
- : String
- # The main discussion points for this post
- : [String!]
- : ArticleStatus!
- : Time!
- : Time!
- # The estimated reading time for this article, in minutes.
- : Int
- # The word count for this article
- : Int
- : [String!]
- : Post
- : ArticleFeed
- # The topics this article is associated with
- : [Topic!]
- }