OBJECT

Organisation

link GraphQL Schema definition

  • type Organisation {
  • # array of organisation's other names
  • alternativeNames: [String!]
  • # organisations which this one controls
  • childOrganisations: [Organisation!]
  • # countries to which this organisation belongs
  • countries: [Country!]
  • # fairsharing_records owned by this organisation
  • fairsharingRecords: [FairsharingRecord!]
  • # grants awarded by this organisation
  • grants: [Grant!]
  • # organisation's homepage URL
  • homepage: String!
  • # ID of the organisation
  • id: Int!
  • # name of the organisation
  • name: String!
  • # links from this organisation to records
  • organisationLinks: [OrganisationLink!]
  • # array of this organisation's type classifications
  • organisationTypes: [OrganisationType!]!
  • # organisations which control this one
  • parentOrganisations: [Organisation!]
  • # organisation's ROR link
  • rorLink: String
  • # saved searches linked to this record
  • savedSearches: [SavedSearch!]
  • # array of this organisation's type classifications
  • types: [String!]!
  • # URL of this organisation's logo
  • urlForLogo: String
  • # users affiliated with this organisation
  • users: [User!]
  • }