OBJECT

Publication

link GraphQL Schema definition

  • type Publication {
  • # authors for the publication
  • authors: Json
  • # fairsharing_records citing this publication
  • citations: [FairsharingRecord!]
  • # DOI of the publication
  • doi: String
  • # fairsharing_records relating to this publication
  • fairsharingRecords: [FairsharingRecord!]
  • # ID of this publication
  • id: Int!
  • # name of the journal in which published
  • journal: String
  • # PUBMED ID of the publication
  • pubmedId: String
  • # title of the publication
  • title: String!
  • # URL of publications's reference page
  • url: String
  • # year of publication
  • year: Int
  • }