> Documentation index: [Saleor](/llms.txt) · [This section](/api-reference/miscellaneous/llms.txt)
> Source: https://docs.saleor.io/api-reference/miscellaneous/queries/translations

# translations Query

Returns a list of all translatable items of a given kind.

Requires the MANAGE\_TRANSLATIONS permission.

```graphql
translations(
  kind: TranslatableKinds!
  before: String
  after: String
  first: Int
  last: Int
): TranslatableItemConnection
```

Details

```graphql
type TranslatableItemConnection {
  pageInfo: PageInfo!
  edges: [TranslatableItemEdge!]!
  totalCount: Int
}
```

<a id="arguments"></a>

### Arguments

<a id="kind"></a>

#### [`kind`](#kind) ● [`TranslatableKinds!`](/api-reference/miscellaneous/enums/translatable-kinds.md)

Kind of objects to retrieve.

<a id="before"></a>

#### [`before`](#before) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

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

<a id="after"></a>

#### [`after`](#after) ● [`String`](/api-reference/miscellaneous/scalars/string.md)

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

<a id="first"></a>

#### [`first`](#first) ● [`Int`](/api-reference/miscellaneous/scalars/int.md)

Retrieve the first n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.

<a id="last"></a>

#### [`last`](#last) ● [`Int`](/api-reference/miscellaneous/scalars/int.md)

Retrieve the last n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.

<a id="type"></a>

### Type

<a id="translatableitemconnection"></a>

#### [`TranslatableItemConnection`](/api-reference/miscellaneous/objects/translatable-item-connection.md)
