How can I access Admin App Metafields values through API?

How can I access Admin App Metafields values through API?

sldshop
Shopify Partner
1 0 0

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

Reply 1 (1)

jazz-jay
Shopify Partner
96 14 17

Hi,

Of course you can, check out the developer resources here

banned