OBJECT

Article

link GraphQL Schema definition

  • type Article implements Node {
  • id: ID!
  • url: String!
  • code: String!
  • publicationDate: Time
  • title: String
  • body: String
  • # The description of the article, either from the RSS feed or the opengraph meta
  • # tag
  • description: String
  • # The AI generated summary of the article
  • summary: String
  • # The Cloudflare CDN url of the image
  • imageURL: String
  • # The original image URL from the RSS feed or the opengraph meta tag
  • originalImageURL: String
  • # The raw HTML content of the article
  • rawContent: String
  • # The main discussion points for this post
  • discussionPoints: [String!]
  • status: ArticleStatus!
  • createdAt: Time!
  • updatedAt: Time!
  • # The estimated reading time for this article, in minutes.
  • readTimeInMinutes: Int
  • # The word count for this article
  • wordCount: Int
  • reflectiveNudges: [String!]
  • post: Post
  • feed: ArticleFeed
  • # The topics this article is associated with
  • topics: [Topic!]
  • }