Organization
Organization are the basic unit in for Kili, and can gather different users, that can create projects.
type Organization {
_: Boolean
id: ID!
activeUsersCount: Int!
address: String! @deprecated
city: String! @deprecated
country: String! @deprecated
dataIntegrations: [DataIntegration]
license: License
name: String!
matchingDomain: String
createdAt: DateTime
numberOfAnnotations: Int! @deprecated
numberOfLabeledAssets: Int! @deprecated
maximumNumberOfLLMCalls: Int!
numberOfLLMCallsRemaining: Int!
numberOfHours: Float! @deprecated
settings: OrganizationSetting!
users: [User]
zipCode: String! @deprecated
organizationMetrics(
metrics: [OrganizationMetricInput!]
granularity: Granularity!
startDate: DateTime!
endDate: DateTime
): [OrganizationMetric] @deprecated
monthlyUsage: OrganizationMonthlyUsage! @deprecated
usageMetrics: OrganizationUsageMetrics!
isAllowedToSubmitNewLabels: Boolean!
usageOverTime(
input: GetUsageOverTimeInput
): OrganizationUsageOverTime
}
Fields
Organization._
● Boolean
scalar
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.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.usageMetrics
● OrganizationUsageMetrics!
non-null object
Usage metrics, containing current month usage and usage on license period
Organization.isAllowedToSubmitNewLabels
● Boolean!
non-null scalar
Boolean indicating whether a user can still make labels given the organization usage and license config
Organization.usageOverTime
● OrganizationUsageOverTime
object
Usage metrics over time
Organization.usageOverTime.input
● GetUsageOverTimeInput
input
Show deprecated
Member Of
User
object