Hello, I am currently developping a shopify embed admin app in which I saved a configuration field/value using GraphQL and the appMetaFields, like that:
mutation CreateAppOwnedMetafield($metafieldsSetInput: [MetafieldsSetInput!]!) {
metafieldsSet(metafields: $metafieldsSetInput) {
metafields {
id
namespace
key
}
userErrors {
field
message
}
}
}
Now I would like to access these values from a external source (outside from shopify) through Shopify API.
Is it possible?
How can I proceed?
Thank you