Skip to main content

Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.

GetUsersOutput

Response from the executed query or mutation

type GetUsersOutput {
email: String!
firstName: String!
isEmailValidated: Boolean!
id: String!
lastName: String!
role: UserRole!
status: UserStatus!
ownedAssetIds: [String!]!
teamIds: [String!]!
createdAt: Timestamp!
}

Fields

GetUsersOutput.email ● String! non-null scalar general

The email of the user

GetUsersOutput.firstName ● String! non-null scalar general

The first name of the user

GetUsersOutput.isEmailValidated ● Boolean! non-null scalar general

Whether the user has validated their email

GetUsersOutput.id ● String! non-null scalar general

The ID of the user

GetUsersOutput.lastName ● String! non-null scalar general

The last name of the user

GetUsersOutput.role ● UserRole! non-null enum general

The role of the user

GetUsersOutput.status ● UserStatus! non-null enum general

The status of the user

GetUsersOutput.ownedAssetIds ● [String!]! non-null scalar general

List of entities owned by the user

GetUsersOutput.teamIds ● [String!]! non-null scalar general

ids of the teams this user belongs to

GetUsersOutput.createdAt ● Timestamp! non-null scalar general

The date and time the user was created

Example

{
"ownedAssetIds": [],
"teamIds": []
}

Returned By