OBJECT

Subject

link GraphQL Schema definition

  • type Subject {
  • # ancestors of this subject
  • ancestors: [Subject!]
  • # direct children of this subject
  • children: [Subject!]
  • # array of definitions (usually just one)
  • definitions: [String!]
  • # expanded names are used only for Elasticsearch
  • expandedNames: [String!]
  • # fairsharing_records tagged with this tag
  • fairsharingRecords: [FairsharingRecordSummary!]
  • # ID of this tag
  • id: Int!
  • # unique IRI of the tag
  • iri: String!
  • # label, to be used as the displayed name of the tag
  • label: String!
  • # direct parents of this subject
  • parents: [Subject!]
  • # array of synonyms for this tag
  • synonyms: [String!]
  • # top level ancestors of this subject
  • topAncestors: [Subject!]
  • }