What's your biggest current challenge? Have your say in Community Polls along the right column.
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

How do I automatically select my private app in the sales channels and apps?

How do I automatically select my private app in the sales channels and apps?

robertbrower
Tourist
5 0 1

I am using this mutation to create products using the admin graphql api:

 

mutation productCreate($inputProductInput!) {
    productCreate(input$input) {
        product {
            id
            title
            bodyHtml
            productType
            vendor
            tags
            metafield(key"configuration"namespace"product") {
                value
            }
        }
        userErrors {
            field
            message
        }
    }
}

 

How do I automatically select my private app in the sales channels and apps when I create the product using the admin graphql api?

Replies 0 (0)