OBJECT

Team

A team defines an entity that clients can be associated with

link GraphQL Schema definition

1type Team {
2
3# Team ID.
4id: ID!
5
6# Team title.
7title: String!
8
9# The id of the team's company.
10companyId: String!
11
12}