OBJECT

Organization

link GraphQL Schema definition

type Organization implements Node {

The abbreviation of the organization.
abbreviation: String!

The datetime when the organization was created
createdAt: ISO8601DateTime!

True if this organization has been marked as deleted
deleteFlag: Boolean!

The description of the organization.
description: String

id: ID!

The name of the organization.
name: String!

Primary organization relationships.

Arguments
after: Returns the elements in the list that come after the
specified cursor.
before: Returns the elements in the list that come before the
specified cursor.
first: Returns the first _n_ elements from the list.
last: Returns the last _n_ elements from the list.
organizationRelationships(
after: String,
before: String,
first: Int,
last: Int
): OrganizationRelationshipConnection!

Role assignments for the organization.

Arguments
after: Returns the elements in the list that come after the
specified cursor.
before: Returns the elements in the list that come before the
specified cursor.
first: Returns the first _n_ elements from the list.
last: Returns the last _n_ elements from the list.
roleAssignments(after: String, before: String, first: Int, last: Int): RoleAssignmentConnection!

Secondary organization relationships.

Arguments
after: Returns the elements in the list that come after the
specified cursor.
before: Returns the elements in the list that come before the
specified cursor.
first: Returns the first _n_ elements from the list.
last: Returns the last _n_ elements from the list.
secondaryRelationships(
after: String,
before: String,
first: Int,
last: Int
): OrganizationRelationshipConnection!

The enabled/disabled status of the organization, new organizations are 'enable'
by default.
status: OrganizationStatus!

The datetime when the organization was last updated
updatedAt: ISO8601DateTime!

The configurations associated with the organization

Arguments
after: Returns the elements in the list that come after the
specified cursor.
before: Returns the elements in the list that come before the
specified cursor.
filter: [Not documented]
first: Returns the first _n_ elements from the list.
last: Returns the last _n_ elements from the list.
orderBy: Ordering options for configuration connections
configurations(
after: String,
before: String,
filter: OrganizationConfigurationFilterInput,
first: Int,
last: Int,
orderBy: [ConfigurationSort!]
): ConfigurationConnection

The configurations shared with the organization

Arguments
after: Returns the elements in the list that come after the
specified cursor.
before: Returns the elements in the list that come before the
specified cursor.
filter: [Not documented]
first: Returns the first _n_ elements from the list.
last: Returns the last _n_ elements from the list.
orderBy: Ordering options for configuration connections
sharedConfigurations(
after: String,
before: String,
filter: OrganizationConfigurationFilterInput,
first: Int,
last: Int,
orderBy: [ConfigurationSort!]
): ConfigurationConnection

}