Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
TeamOwnerEntity
A team owner entity represents a team that owns an entity (dashboard, table, knowledge).
type TeamOwnerEntity {
id: ID!
ownerLabelId: String
ownerLabel: OwnerLabel
teamId: String!
team: Team!
createdAt: Timestamp!
updatedAt: Timestamp!
}
Fields
TeamOwnerEntity.id ● ID! non-null scalar general
Unique Catalog identifier of the resource
TeamOwnerEntity.ownerLabelId ● String scalar general
The id of the owner label
TeamOwnerEntity.ownerLabel ● OwnerLabel object ownerships
The owner label
TeamOwnerEntity.teamId ● String! non-null scalar general
the owning team id
TeamOwnerEntity.team ● Team! non-null object teams
The owning team
TeamOwnerEntity.createdAt ● Timestamp! non-null scalar general
Date and time the resource was created
TeamOwnerEntity.updatedAt ● Timestamp! non-null scalar general
Date and time the resource was last updated
Example
{
"id": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"ownerLabelId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"ownerLabel": {
"label": "Data Steward"
},
"teamId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"team": {
"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": [],
"createdAt": 1758555879800,
"updatedAt": 1758555879800
}
}
Returned By
upsertTeamOwnersmutation