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!
dataIntegrations: [DataIntegration]
isAllowedToSubmitNewLabels: Boolean!
license: License
name: String!
matchingDomain: String
createdAt: DateTime
settings: OrganizationSetting!
users: [User]
}
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.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.settings ● OrganizationSetting! non-null object
Organization.users ● [User] list object
Member Of
User object