Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
Team
A team represents a group of users.
type Team {
id: ID!
avatarUrl: String
description: String
email: String
externalId: String
name: String!
slackChannel: String
slackGroup: String
source: String
teamOwnerEntities: [TeamOwnerEntity!]!
createdAt: Timestamp!
updatedAt: Timestamp!
}
Fields
Team.id ● ID! non-null scalar general
Unique Catalog identifier of the resource
Team.avatarUrl ● String scalar general
The avatar url of the team
Team.description ● String scalar general
The description of the team
Team.email ● String scalar general
The email of the team
Team.externalId ● String scalar general
external id of the team when synchronized from an external source
Team.name ● String! non-null scalar general
The name of the team
Team.slackChannel ● String scalar general
The slack channel of the team (start with #)
Team.slackGroup ● String scalar general
The slack group of the team (start with @)
Team.source ● String scalar general
Indicate where the team come from: HR tool, Slack, Google groups...
Team.teamOwnerEntities ● [TeamOwnerEntity!]! non-null object ownerships
The entities owned by the team
Team.createdAt ● Timestamp! non-null scalar general
Date and time the resource was created
Team.updatedAt ● Timestamp! non-null scalar general
Date and time the resource was last updated
Example
{
"id": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"avatarUrl": "https://example.com/avatar.png",
"description": "Members of the EMEA sales team",
"email": "emea.sales@example.com",
"externalId": "emea-sales",
"name": "EMEA Sales",
"slackChannel": "#emea-sales",
"slackGroup": "@emea-sales",
"source": "Slack",
"teamOwnerEntities": [
{
"ownerLabelId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"ownerLabel": {
"label": "Data Steward"
},
"teamId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"createdAt": 1758555879800,
"updatedAt": 1758555879800
}
]
}
Returned By
upsertTeammutation
Member Of
TeamOwnerEntityobject