translatableResources
Requires access scope.
Resources that can have localized values for different languages.
TranslatableResourceConnection arguments
- Anchor to afterafter•
The elements that come after the specified cursor.
- Anchor to beforebefore•
The elements that come before the specified cursor.
- Anchor to firstfirst•
The first
n
elements from the paginated list.- Anchor to lastlast•
The last
n
elements from the paginated list.- Anchor to resourceTyperesource•
Type TranslatableResource requiredType! Return only resources of a type.
- Anchor to reversereverse•BooleanDefault:false
Reverse the order of the underlying list.
Anchor to Possible returnsPossible returns
- Anchor to edgesedges•[Translatable
Resource non-nullEdge!]! The connection between the node and its parent. Each edge contains a minimum of the edge's cursor and the node.
- Anchor to nodesnodes•[Translatable
Resource!]! non-null A list of nodes that are contained in TranslatableResourceEdge. You can fetch data about an individual node, or you can follow the edges to fetch data about a collection of related nodes. At each node, you specify the fields that you want to retrieve.
- Anchor to pageInfopage•
Info PageInfo! non-null An object that’s used to retrieve cursor information about the current page.
Retrieve translatable content for the first 5 products
1const { admin } = await authenticate.admin(request);23const response = await admin.graphql(4 `#graphql5 query {6 translatableResources(first: 5, resourceType: PRODUCT) {7 edges {8 node {9 resourceId10 translatableContent {11 key12 value13 digest14 locale15 }16 }17 }18 }19 }`,20);2122const data = await response.json();23
query {
translatableResources(first: 5, resourceType: PRODUCT) {
edges {
node {
resourceId
translatableContent {
key
value
digest
locale
}
}
}
}
}
curl -X POST \
https://your-development-store.myshopify.com/admin/api/2025-04/graphql.json \
-H 'Content-Type: application/json' \
-H 'X-Shopify-Access-Token: {access_token}' \
-d '{
"query": "query { translatableResources(first: 5, resourceType: PRODUCT) { edges { node { resourceId translatableContent { key value digest locale } } } } }"
}'
const { admin } = await authenticate.admin(request);
const response = await admin.graphql(
`#graphql
query {
translatableResources(first: 5, resourceType: PRODUCT) {
edges {
node {
resourceId
translatableContent {
key
value
digest
locale
}
}
}
}
}`,
);
const data = await response.json();
const client = new shopify.clients.Graphql({session});
const data = await client.query({
data: `query {
translatableResources(first: 5, resourceType: PRODUCT) {
edges {
node {
resourceId
translatableContent {
key
value
digest
locale
}
}
}
}
}`,
});
session = ShopifyAPI::Auth::Session.new(
shop: "your-development-store.myshopify.com",
access_token: access_token
)
client = ShopifyAPI::Clients::Graphql::Admin.new(
session: session
)
query = <<~QUERY
query {
translatableResources(first: 5, resourceType: PRODUCT) {
edges {
node {
resourceId
translatableContent {
key
value
digest
locale
}
}
}
}
}
QUERY
response = client.query(query: query)
Response
JSON1{2 "translatableResources": {3 "edges": [4 {5 "node": {6 "resourceId": "gid://shopify/Product/20995642",7 "translatableContent": [8 {9 "key": "title",10 "value": "Element",11 "digest": "4e5b548d6d61f0006840aca106f7464a4b59e5a854317d5b57861b8423901bf6",12 "locale": "en"13 },14 {15 "key": "body_html",16 "value": "<p>bad board</p>",17 "digest": "60cd8aaeeec8e14d9da0dd1ed4cff31c0bb8f9c64255adad9dc1d2140c472f3b",18 "locale": "en"19 },20 {21 "key": "handle",22 "value": "element",23 "digest": "445929267209c034d1e324834c17e0c8305df3dcb21d1710a639ac6ca08c648b",24 "locale": "en"25 },26 {27 "key": "product_type",28 "value": "Snowboards",29 "digest": "3c752b33c3546064f02d47978a3883019e5bef320ddbc48875318b8d76c6154b",30 "locale": "en"31 }32 ]33 }34 },35 {36 "node": {37 "resourceId": "gid://shopify/Product/108828309",38 "translatableContent": [39 {40 "key": "title",41 "value": "Draft",42 "digest": "ebf12ef47cf575b3ba9a3cc019c5310146fdac88f6d1be6618d6e91158c2f174",43 "locale": "en"44 },45 {46 "key": "body_html",47 "value": "<p>good board</p>",48 "digest": "6e634d476ca1dde2a0992fd6f57fc48b5979c8a4ee19117044a054f9f601ae56",49 "locale": "en"50 },51 {52 "key": "handle",53 "value": "draft",54 "digest": "7743ce348d9284d677a185f33295b92266cc435a5b5f775029b300066d26693a",55 "locale": "en"56 },57 {58 "key": "product_type",59 "value": "Snowboards",60 "digest": "3c752b33c3546064f02d47978a3883019e5bef320ddbc48875318b8d76c6154b",61 "locale": "en"62 }63 ]64 }65 },66 {67 "node": {68 "resourceId": "gid://shopify/Product/121709582",69 "translatableContent": [70 {71 "key": "title",72 "value": "Boots",73 "digest": "929433e4be1dbd23ffc6b076da2e6f3854ccc5fe606a1e59419110b71fe0a833",74 "locale": "en"75 },76 {77 "key": "body_html",78 "value": "<p>some boots</p>",79 "digest": "8e6907bdb64ea435ccc2874160eaa35db63c95bb5804d93ea460c3a72a68c00c",80 "locale": "en"81 },82 {83 "key": "handle",84 "value": "boots",85 "digest": "40cafc18e93464f86d5d304e726df74311237955bcf7d99909bcef3f0bcb90bb",86 "locale": "en"87 },88 {89 "key": "product_type",90 "value": "Boots",91 "digest": "929433e4be1dbd23ffc6b076da2e6f3854ccc5fe606a1e59419110b71fe0a833",92 "locale": "en"93 }94 ]95 }96 },97 {98 "node": {99 "resourceId": "gid://shopify/Product/440089423",100 "translatableContent": [101 {102 "key": "title",103 "value": "IPod Nano - 8GB",104 "digest": "4ce3c71c164cd0ddc7c95e7d554d9b028e6a6ed4abff8a71ad714c6f2f1a7e4a",105 "locale": "en"106 },107 {108 "key": "body_html",109 "value": "<p>It's the small iPod with one very big idea: Video. Now the world's most popular music player, available in 4GB and 8GB models, lets you enjoy TV shows, movies, video podcasts, and more. The larger, brighter display means amazing picture quality. In six eye-catching colors, iPod nano is stunning all around. And with models starting at just $149, little speaks volumes.</p>",110 "digest": "d3378109cc15e6d88148c52661e687203c692141fe837dbe983fd02e9b095803",111 "locale": "en"112 },113 {114 "key": "handle",115 "value": "ipod-nano",116 "digest": "226259c06fdbf95cd3b681de6db73d0346c7dae4d381f0472c0e405b73cf57e0",117 "locale": "en"118 },119 {120 "key": "product_type",121 "value": "Cult Products",122 "digest": "be736be3f50f1755fdc2f5bc96b10251d56cd1888a51889321cb96d605078c42",123 "locale": "en"124 }125 ]126 }127 },128 {129 "node": {130 "resourceId": "gid://shopify/Product/558169081",131 "translatableContent": [132 {133 "key": "title",134 "value": "Unpublished Boots",135 "digest": "1654ceb776b32b1bf3298e88ce86829478d3be20669887faebc98daf88ebabc0",136 "locale": "en"137 },138 {139 "key": "body_html",140 "value": "<p>some boots</p>",141 "digest": "8e6907bdb64ea435ccc2874160eaa35db63c95bb5804d93ea460c3a72a68c00c",142 "locale": "en"143 },144 {145 "key": "handle",146 "value": "unpublished_boots",147 "digest": "8fa116cf72ed66775134127295e199c727b3756c676b13699b2060db2f19d78c",148 "locale": "en"149 },150 {151 "key": "product_type",152 "value": "Boots",153 "digest": "929433e4be1dbd23ffc6b076da2e6f3854ccc5fe606a1e59419110b71fe0a833",154 "locale": "en"155 }156 ]157 }158 }159 ]160 }161}