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

Release Object

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

releases ( ReleaseConnection! )

Root connection for retrieving Release 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.
filterReleaseFilterFilter to determine which Release records are returned.
firstIntReturns the first n elements from the list.
lastIntReturns the last n elements from the list.
orderReleaseOrderOrder of the Release records returned.
viewReleaseViewView name. The default value is current_account .

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

account ( Account )

The account this record belongs to.

completedAt ( ISO8601Timestamp )

The date and time at which the release is set to the status “Completed”.

completionReason ( WorkflowCompletionReason )

Automatically set based on the completion reason of the release’s workflows.

completionTargetAt ( ISO8601Timestamp )

The target date and time of the last task of the workflows that are related to the release.

createdAt ( ISO8601Timestamp )

The date and time at which the record was created.

customFields ( CustomField )

Values of custom fields.

id ( ID! )

Unique identifier of the record.

impact ( TaskImpact )

The maximum impact level that is selected in the tasks of the workflows that are related to the release. This indicates the maximum extent to which a service instance will be impacted by the implementation of the release.

lifeCycleState ( LifeCycleState )

Current state of the record.

manager ( Person )

The person who is responsible for coordinating the implementation of the release. The person must have the release Manager role.

releaseId ( String )

The record ID as displayed in the UI

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.

status ( WorkflowStatus )

Automatically set based on the status of the release’s workflows.

subject ( String )

A short description of the objective of the release.

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 Release record. The actual objects will be in the nodes field of the connection.

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.

notes ( NoteConnection )

Notes 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.

workflows ( WorkflowConnection )

Workflows of the release.

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.

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