Skip to main content

Organization

Organization are the basic unit in for Kili, and can gather different users, that can create projects.

type Organization {
organizationMetrics(
metrics: [OrganizationMetricInput!]
granularity: Granularity!
startDate: DateTime!
endDate: DateTime
): [OrganizationMetric] @deprecated
id: ID!
activeUsersCount: Int!
dataIntegrations: [DataIntegration]
isAllowedToSubmitNewLabels: Boolean!
license: License
name: String!
matchingDomain: String
createdAt: DateTime
maximumNumberOfLLMCalls: Int!
numberOfLLMCallsRemaining: Int!
settings: OrganizationSetting!
users: [User]
_: Boolean
}

Fields

Organization.id ● ID! non-null scalar

Organization.activeUsersCount ● Int! non-null scalar

Number of active users in the organization

Organization.dataIntegrations ● [DataIntegration] list object

Organization.isAllowedToSubmitNewLabels ● Boolean! non-null scalar

Boolean indicating whether a user can still make labels given the organization usage and license config

Organization.license ● License object

Organization.name ● String! non-null scalar

Organization.matchingDomain ● String scalar

Organization.createdAt ● DateTime scalar

Organization.maximumNumberOfLLMCalls ● Int! non-null scalar

Organization.numberOfLLMCallsRemaining ● Int! non-null scalar

Organization.settings ● OrganizationSetting! non-null object

Organization.users ● [User] list object

Organization._ ● Boolean scalar

Show deprecated

Member Of

User object