OBJECT

Domain

link GraphQL Schema definition

  • type Domain {
  • # ancestors of this domain
  • ancestors: [Domain!]
  • # direct children of this domain
  • children: [Domain!]
  • # 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!
  • # is this domain allowed to be shown to users
  • inFairsharing: Boolean!
  • # unique IRI of the tag
  • iri: String!
  • # label, to be used as the displayed name of the tag
  • label: String!
  • # direct parents of this domain
  • parents: [Domain!]
  • # array of synonyms for this tag
  • synonyms: [String!]
  • # top level ancestors of this domain
  • topAncestors: [Domain!]
  • }