OBJECT

ArticleFeed

link GraphQL Schema definition

  • type ArticleFeed implements Node {
  • id: ID!
  • title: String!
  • url: String!
  • rssUrls: [String!]!
  • ignoreImages: Boolean!
  • enabled: Boolean!
  • lastUpdated: Time
  • # Whether the feed is generated by AI
  • isAi: Boolean!
  • # Whether AI processing should be skipped for this feed.
  • skipAiProcessing: Boolean!
  • # The profile image for the user. Images are hosted using Cloudflare images.
  • # Please see
  • # https://developers.cloudflare.com/images/cloudflare-images/serve-images/ for
  • # details on how to serve images.
  • profileImage: Image
  • syntheticUser: User!
  • articles: [Article!]
  • # The provider types that are associated with the feed.
  • providerTypes: [ProviderType!]
  • logs: [ArticleFeedImport!]
  • }