OBJECT

Team

Team class

link GraphQL Schema definition

  • type Team {
  • # Auto-incrementing integer unique to team table. Generated automatically on
  • # create
  • id: Int
  • # The team name
  • title: String
  • # The business thiis team belongs to
  • business: Business
  • # The User who is assigned as the leader of this team
  • team_leader: User
  • # The User who is assigned as the leader of this team
  • team_members: [User]
  • }