Hi,
I was getting metafields deprecation errors for my custom app. I have since updated the app to use the latest API with the new way of retrieving metafields value.
Previously when I run
curl -X GET "https://your-development-store.myshopify.com/admin/api/2023-01/deprecated_api_calls.json" \
-H "X-Shopify-Access-Token: {access_token}"
I was getting the error messages in English.
But now with the updated code, I am getting the error in German. Any insights on why the messages are in German? Is it because the APIs are being accessed from somewhere in Germany? I am hoping this can help me identity where the calls to the deprecated APIs are coming from.
{"data_updated_at":"2023-05-13T03:59:59.000000Z","deprecated_api_calls":[{"api_type":"graphql","description":"Einige zuvor veraltete Felder wurden aus der Storefront-API entfernt. Bitte überprüfe die Release-Hinweise für eine vollständige Liste der Änderungen.","documentation_url":"https:\/\/shopify.dev\/api\/release-notes\/2022-01#graphql-storefront-api-changes","endpoint":"Product.images.maxWidth","last_call_at":"2023-05-12T20:17:26.000000Z","migration_deadline":"2023-01-01T15:00:00.000000Z","graphql_schema_name":"Storefront","version":"2022-04"},{"api_type":"graphql","description":"Einige zuvor veraltete Felder wurden aus der Storefront-API entfernt. Bitte überprüfe die Release-Hinweise für eine vollständige Liste der Änderungen.","documentation_url":"https:\/\/shopify.dev\/api\/release-notes\/2022-01#graphql-storefront-api-changes","endpoint":"ProductVariant.image.maxHeight","last_call_at":"2023-05-12T20:17:26.000000Z","migration_deadline":"2023-01-01T15:00:00.000000Z","graphql_schema_name":"Storefront","version":"2022-04"},{"api_type":"graphql","description":"Ändere die HasMetafields.metafields der Storefront-API von einer seitenbasierten Verbindung zu einem Feld, das explizite identifiers für die Rückgabe von Metafeldern erfordert.","documentation_url":"https:\/\/shopify.dev\/changelog\/the-behavior-of-hasmetafields-metafields-has-changed","endpoint":"HasMetafields.metafields","last_call_at":"2023-05-12T20:17:26.000000Z","migration_deadline":"2023-07-01T15:00:00.000000Z","graphql_schema_name":"Storefront","version":"2022-07"},
thank you