OBJECT

PubmedArticle

link GraphQL Schema definition

  • type PubmedArticle implements Node {
  • id: ID!
  • # The unique identifier for the article
  • pmid: Int!
  • title: String!
  • journal: Journal
  • abstract: String
  • abstractCopyright: String
  • abstractStructured: [Abstract!]
  • summary: String
  • # When the summary was generated for the article
  • summaryGeneratedAt: Time
  • # Is the article in medline
  • medline: Boolean!
  • # Is the article in PMC
  • pmc: Boolean!
  • # Is the article in PMC and open access
  • openAccess: Boolean!
  • # When the article was downloaded from PMC
  • pmcDownloadedAt: Time
  • # When the embeddings were generated for the article
  • embeddingsGeneratedAt: Time
  • authorList: [Author!]
  • grantList: [Grant!]
  • keywordList: [String!]
  • articleIDList: [ArticleId!]
  • meshHeadingList: [MeshHeading!]
  • referenceList: [Reference!]
  • terms: [String!]
  • termFrequencies: Map
  • # The number of tokens in the title and abstract
  • tokens: Int
  • # The date the article was revised in pubmed
  • dateRevised: Time
  • # The date the article was created in pubmed
  • dateCompleted: Time
  • # The file the article was imported from
  • importFile: String
  • # When the article was created in out database
  • createdAt: Time!
  • # When the article was last updated in our database
  • updatedAt: Time!
  • # When the article was indexed
  • indexedAt: Time
  • # When the article was vectorized
  • vectorizedAt: Time
  • embeddings: [PubmedAbstractEmbedding!]
  • abstracts: [PubmedArticleAbstract!]
  • # The sparky queries that reference this article
  • sparkyQueries: [SparkyQuery!]
  • topicClassifications: [TopicClassification!]
  • }