Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
OwnerEntity
Represents a user who is designated as the owner of a dashboard, table, or term.
type OwnerEntity {
id: ID!
dashboardId: String
ownerLabelId: String
ownerLabel: OwnerLabel
tableId: String
termId: String
unifiedUser: UnifiedUser!
userId: String
user: User
createdAt: Timestamp!
updatedAt: Timestamp!
}
Fields
OwnerEntity.id ● ID! non-null scalar general
Unique Catalog identifier of the resource
OwnerEntity.dashboardId ● String scalar general
Id of the dashboard owned
OwnerEntity.ownerLabelId ● String scalar general
Id of the owner label
OwnerEntity.ownerLabel ● OwnerLabel object ownerships
The owner label
OwnerEntity.tableId ● String scalar general
Id of the table owned
OwnerEntity.termId ● String scalar general
Id of the term owned
OwnerEntity.unifiedUser ● UnifiedUser! non-null object users
The unified user linked to the owner
OwnerEntity.userId ● String scalar general
Id of the user who owns the entity
OwnerEntity.user ● User object users
The owner
OwnerEntity.createdAt ● Timestamp! non-null scalar general
Timestamp of when the record was created
OwnerEntity.updatedAt ● Timestamp! non-null scalar general
Timestamp of when the record was last updated
Example
{
"id": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"dashboardId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"ownerLabelId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"ownerLabel": {
"label": "Data Steward"
},
"tableId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"termId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"unifiedUser": {
"avatarUrl": "https://example.com/avatar.png",
"email": "john.doe@example.com",
"name": "John Doe",
"role": "CONTRIBUTOR",
"status": "ACTIVATED",
"teamIds": [
"fffe43cb-a92f-48d9-9527-3fcc4e5f6dba"
],
"userId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"createdAt": 1758555879800
},
"user": {
"externalId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"firstName": "John",
"lastName": "Doe",
"ownerEntities": [],
"updatedAt": 1758555879800,
"fullName": "John Doe"
}
}
Returned By
upsertUserOwnersmutation