OBJECT
PubmedArticle
link GraphQL Schema definition
- type PubmedArticle implements Node {
- : ID!
- # The unique identifier for the article
- : Int!
- : String!
- : Journal
- : String
- : String
- : [Abstract!]
- : String
- # When the summary was generated for the article
- : Time
- # Is the article in medline
- : Boolean!
- # Is the article in PMC
- : Boolean!
- # Is the article in PMC and open access
- : Boolean!
- # When the article was downloaded from PMC
- : Time
- # When the embeddings were generated for the article
- : Time
- : [Author!]
- : [Grant!]
- : [String!]
- : [ArticleId!]
- : [MeshHeading!]
- : [Reference!]
- : [String!]
- : Map
- # The number of tokens in the title and abstract
- : Int
- # The date the article was revised in pubmed
- : Time
- # The date the article was created in pubmed
- : Time
- # The file the article was imported from
- : String
- # When the article was created in out database
- : Time!
- # When the article was last updated in our database
- : Time!
- # When the article was indexed
- : Time
- # When the article was vectorized
- : Time
- : [PubmedAbstractEmbedding!]
- : [PubmedArticleAbstract!]
- # The sparky queries that reference this article
- : [SparkyQuery!]
- : [TopicClassification!]
- }