Organization
An organization with its full details and related resources.
type Organization {
id: ID!
name: String!
createdAt: DateTime!
updatedAt: DateTime!
logo: LogoOrganization
tagConstraints(
sort: OrganizationTagConstraintsSort
cursor: Cursor
): OrganizationTagConstraintsPage
tagSchema(
scope: TagConstraintScope!
): Map!
}
Fields
Organization.id ● ID! non-null scalar {#id}
Organization.name ● String! non-null scalar {#name}
Organization name
Organization.createdAt ● DateTime! non-null scalar {#created-at}
When this organization was created (UTC)
Organization.updatedAt ● DateTime! non-null scalar {#updated-at}
When this organization was last modified (UTC)
Organization.logo ● LogoOrganization object {#logo}
The organization's logo image.
Organization.tagConstraints ● OrganizationTagConstraintsPage object {#tag-constraints}
Tag constraints that define the structural tags for this organization.
Organization.tagConstraints.sort ● OrganizationTagConstraintsSort input {#organization-tag-constraints-sort}
How to sort results
Organization.tagConstraints.cursor ● Cursor input {#organization-tag-constraints-cursor}
Pagination cursor from a previous response
Organization.tagSchema ● Map! non-null scalar {#tag-schema}
JSON Schema describing the tag fields for a given resource scope.
Organization.tagSchema.scope ● TagConstraintScope! non-null enum {#organization-tag-schema-scope}
Resource level (e.g. PROJECT, ENVIRONMENT)
Returned By
organization query
Member Of
OrganizationPayload object