I am developing a translation app. Working on the notification translation now. I was looking through the API documentation to receive a proper email template name. For example the official “Translate & Adapt” official app uses this address https://store-localization.shopifyapps.com/graphql to receive this kind of data :
{
"shop": {
"id": "gid://shopify/Shop/xxxxxxxx",
"search": {
"edges": [
{
"node": {
"id": "gid://shopify/EmailTemplate/29405118753",
"title": "Order confirmation",
"image": null,
"__typename": "SearchResult"
},
"__typename": "SearchResultEdge"
},
{
"node": {
"id": "gid://shopify/EmailTemplate/29405151521",
"title": "Order edited",
"image": null,
"__typename": "SearchResult"
},
"__typename": "SearchResultEdge"
},
...
This is what i am looking for. Unfortunately can not find this in API documentation. Could you help me with this ?