OBJECT
Organisation
link GraphQL Schema definition
- type Organisation {
- # array of organisation's other names
- : [String!]
- # organisations which this one controls
- : [Organisation!]
- # countries to which this organisation belongs
- : [Country!]
- # fairsharing_records owned by this organisation
- : [FairsharingRecord!]
- # grants awarded by this organisation
- : [Grant!]
- # organisation's homepage URL
- : String!
- # ID of the organisation
- : Int!
- # name of the organisation
- : String!
- # links from this organisation to records
- : [OrganisationLink!]
- # array of this organisation's type classifications
- : [OrganisationType!]!
- # organisations which control this one
- : [Organisation!]
- # organisation's ROR link
- : String
- # saved searches linked to this record
- : [SavedSearch!]
- # array of this organisation's type classifications
- : [String!]!
- # URL of this organisation's logo
- : String
- # users affiliated with this organisation
- : [User!]
- }