Skip to content
R-Service R-Service
RR Tech Service Management Developer Guide

Organization Object

All Organization objects of an account are accessible by a query on the root connection organizations . Such a query will return a OrganizationConnection! , which contains the Organization objects in its nodes field.

organizations ( OrganizationConnection! )

Root connection for retrieving Organization records.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
filterOrganizationFilterFilter to determine which Organization records are returned.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.
orderOrganizationOrderOrder of the Organization records returned.
viewOrganizationViewView name. The default value is current_account .

The fields in this section list which values can be retrieved when querying Organization records.

account ( Account )

The account this record belongs to.

businessUnit ( Boolean )

Whether the organization needs to be treated as a separate entity from a reporting perspective. This checkbox is only available for internal organizations.

businessUnitOrganization ( Organization )

Refers to itself if the organization is a business unit, or refers to the business unit that the organization belongs to.

createdAt ( ISO8601Timestamp )

The date and time at which the record was created.

customFields ( CustomField )

Values of custom fields.

disabled ( Boolean )

Whether the organization may no longer be related to other records.

financialID ( String )

The unique identifier by which the organization is known in the financial system.

id ( ID! )

Unique identifier of the record.

manager ( Person )

The manager of the organization.

name ( String )

The full name of the organization.

orderTemplate ( RequestTemplate )

Refers to the order template that is used for purchases of people defined in this organization or its descendants.

parent ( Organization )

The organization’s parent organization.

pictureUri ( String )

The hyperlink to the image file for the record.

region ( String )

Which region the organization belongs to. Examples of commonly used region names are:

  • Asia Pacific (APAC)
  • Europe, Middle East & Africa (EMEA)
  • North America (NA)

remarks ( String )

Any additional information about the organization that might prove useful.

source ( String )

An identifier for the client application submitting the resource or the name of an external system.

sourceID ( String )

The unique identifier of the resource in an external system.

substitute ( Person )

The person who acts as the substitute of the organization’s manager.

uiExtension ( UiExtension )

UI extension that is linked to the record.

updatedAt ( ISO8601Timestamp )

The date and time of the last update of the record. If the record has no updates it contains the createdAt value.

The connection fields in this section allow (paged) access to objects related to a specific Organization record. The actual objects will be in the nodes field of the connection.

addresses ( AddressConnection )

Addresses of the record.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

childOrganizations ( OrganizationConnection )

Child organizations of this organization, i.e. organizations that have this organization as their parent.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

contacts ( ContactConnection )

Contact details for this entity.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

contracts ( ContractConnection )

Contracts of this organization.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

customFieldsAttachments ( AttachmentConnection )

Inline images linked to one of the custom fields.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

people ( PersonConnection )

People of this organization.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

remarksAttachments ( AttachmentConnection )

Files and inline images linked to the Remarks field.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

risks ( RiskConnection )

Risks of this organization.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

serviceLevelAgreements ( ServiceLevelAgreementConnection )

Service level agreements which coverage field is set to organizations and which cover the organization.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

timeAllocations ( TimeAllocationConnection )

Time allocations of this organization.

ArgumentTypeDescription
afterStringReturns the elements in the list that come after the specified cursor.
beforeStringReturns the elements in the list that come before the specified cursor.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.

Organization implements the following interfaces. This means that fragments defined on these interfaces may be used in queries returning a Organization.