OBJECT

PMCArticleChunk

link GraphQL Schema definition

  • type PMCArticleChunk implements Node {
  • id: ID!
  • content: String!
  • # Type of chunk: abstract, body, section
  • chunkType: String!
  • # Position within article (0-indexed)
  • chunkIndex: Int!
  • # The embedding model version used
  • modelVersion: String!
  • # The number of tokens in the content that was embedded
  • tokenCount: Int!
  • # When embedding was generated
  • embeddedAt: Time
  • createdAt: Time!
  • pmcArticleID: ID!
  • article: PMCArticle!
  • }