For the complete documentation index, see llms.txt. This page is also available as Markdown.

Account

Represents an account (in a single data source) of a user.

type Account {
  accountName: String!
  createdAt: Time!
  dataSource: DataSource!
  deleted: Boolean!
  email: String
  id: ID!
  modifiedAt: Time!
  name: String!
  tags(
    after: String
    limit: Int
    order: [TagOrderByInput!]
    search: String
  ): TagConnectionResult!
  user: User!
}

Fields

accountName ● String! non-null scalar

The account name.

createdAt ● Time! non-null scalar

The time this account was first created.

dataSource ● DataSource! non-null object

The data source with which this account is associated.

deleted ● Boolean! non-null scalar

Indicates if this account is deleted or not.

email ● String scalar

The email address.

id ● ID! non-null scalar

The unique identifier of the account.

modifiedAt ● Time! non-null scalar

The time this account was last modified.

name ● String! non-null scalar

The display name.

tags ● TagConnectionResult! non-null union

List the tags of the account.

after ● String scalar

limit ● Int scalar

order ● [TagOrderByInput!] list input

search ● String scalar

user ● User! non-null object

The user with which this account is associated.

Returned By

account query ● accountsById query

Member Of

AccountEdge object ● QueryHistoryStatement object

Last updated

Was this helpful?