Перейти к содержимому
R-Service R-Service
Руководство разработчика RR Tech Service Management

Translation Object

Эта документация пока недоступна на вашем языке, поэтому показана английская версия.

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

translations ( TranslationConnection! )

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

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

account ( Account )

The account this record belongs to.

createdAt ( ISO8601Timestamp )

The date and time at which the record was created.

disabled ( Boolean )

Whether the translation is related to a disabled or inactive record.

field ( String )

The field of the record from which the translation is obtained.

id ( ID! )

Unique identifier of the record.

language ( Language )

The language in which the text is specified.

owner ( HasTranslations )

The record from which the translation is obtained.

text ( String )

The text of the translation.

updatedAt ( ISO8601Timestamp )

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

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