OBJECT
Company
A Company
link GraphQL Schema definition
- type Company {
- # Id
- : Int!
- # Name
- : String!
- # The Company parent (if exists)
- : Company
- # The Company parent (if exists), without access checks.
- : PublicCompany
- # Sites of the Company
- : [Site]
- # Users that belong to the Company
- : [User] @deprecated( reason: "Use companyUsers instead" )
- # List users of company
- : [UserCompany]
- # A user that belongs to the Company
- #
- # Arguments
- # userId: Id of a User
- (: Int!): User
- # Children companies
- : [Company]!
- }