AdminUserTenant
Organizational entity representing a multi-tenant configuration with administrative settings and user associations. Contains all necessary information for tenant management and access control.
type AdminUserTenant {
id: ID!
tenant: String!
name: String!
default: Boolean!
createdAt: DateTime!
createdBy: Int!
lastModifiedAt: DateTime!
lastModifiedBy: Int!
user: AdminUser
}
Fields
AdminUserTenant.id
● ID!
non-null scalar
Unique identifier for the organizational entity. Used for internal system references and relationships across the multi-tenant architecture.
AdminUserTenant.tenant
● String!
non-null scalar
Unique identifier used throughout the system for this organization. This identifier is used in URLs, API calls, and internal references. Maximum length of 32 characters.
AdminUserTenant.name
● String!
non-null scalar
Human-readable display name for the organization. This name appears in administrative interfaces and user-facing elements. Maximum length of 64 characters.
AdminUserTenant.default
● Boolean!
non-null scalar
Indicates whether this organization is set as the system default. The default organization is used for system-wide operations and as a fallback when no specific organization is specified.
AdminUserTenant.createdAt
● DateTime!
non-null scalar
Timestamp when the organizational entity was created. Used for audit trails and lifecycle tracking of organizational configurations.
AdminUserTenant.createdBy
● Int!
non-null scalar
Identifier of the user who created this organizational entity. Used for audit trails and accountability tracking in organizational management.
AdminUserTenant.lastModifiedAt
● DateTime!
non-null scalar
Timestamp when the organizational entity was last modified. Automatically updated whenever configuration or settings change.
AdminUserTenant.lastModifiedBy
● Int!
non-null scalar
Identifier of the user who last modified this organizational entity. Used for audit trails and change tracking in organizational management.
AdminUserTenant.user
● AdminUser
object
Administrative user associated with this organizational entity. Represents the primary administrator responsible for organizational management and configuration.
Returned By
adminUserTenant
query ● adminUserTenantCreate
mutation ● adminUserTenantDelete
mutation
Member Of
TenantResponse
object