Translation Object

Root Connection

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.

Argument Type Description
after String

Returns the elements in the list that come after the specified cursor.

before String

Returns the elements in the list that come before the specified cursor.

filter TranslationFilter

Filter to determine which Translation records are returned.

first Int

Returns the first n elements from the list.

last Int

Returns the last n elements from the list.

order [TranslationOrder!]

Order of the Translation records returned.

view TranslationView

View name.

The default value is current_account.

Fields

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.

Implements

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