For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dev Portal
DocsAPI ReferenceLearnCommunityChangelog
DocsAPI ReferenceLearnCommunityChangelog
    • About Our APIs
  • REST
    • Overview
  • GraphQL
    • Overview
          • QUERYclient
          • QUERYstore
          • QUERYsystem
          • QUERYnode
          • QUERYnodes
          • QUERYsupportedLocales
  • MCP
    • Overview
Dev Portal
LogoLogo
GraphQLAdminQueries

supportedLocales

Example Query
1query ExampleQuery($before: String, $after: String, $first: Int, $last: Int) {
2 supportedLocales(before: $before, after: $after, first: $first, last: $last) {
3 pageInfo {
4 hasNextPage
5 hasPreviousPage
6 startCursor
7 endCursor
8 }
9 edges {
10 node
11 cursor
12 }
13 }
14}
Variables
1{
2 "before": "example",
3 "after": "example",
4 "first": 0,
5 "last": 0
6}
Example response
1{
2 "data": {
3 "supportedLocales": {
4 "pageInfo": {
5 "hasNextPage": true,
6 "hasPreviousPage": true,
7 "startCursor": "example",
8 "endCursor": "example"
9 },
10 "edges": [
11 {
12 "node": {
13 "code": null,
14 "englishName": null,
15 "hasBuiltInTranslations": null
16 },
17 "cursor": "example"
18 }
19 ]
20 }
21 }
22}
List of supported locales.
Was this page helpful?
Previous

nodes

Next

createAppExtension

Built with

Arguments

beforeStringOptional
afterStringOptional
firstIntegerOptional
lastIntegerOptional

Returns

a SupportedLocaleConnection
pageInfoPageInfo
Information to aid in pagination.
edgeslist of optional SupportedLocaleEdge
A list of edges.