Skip to content

Instantly share code, notes, and snippets.

@schappim
Created January 31, 2025 00:13
Show Gist options
  • Save schappim/89217bffa8cc6d79b43940b62c7e1c47 to your computer and use it in GitHub Desktop.
Save schappim/89217bffa8cc6d79b43940b62c7e1c47 to your computer and use it in GitHub Desktop.
Publishing a product w/ GraphQL on Shopify
query {
publications(first: 10) {
edges {
node {
id
name
}
}
}
}
mutation publishProductToChannel($productId: ID!, $publicationId: ID!) {
publishablePublish(id: $productId, input: { publicationId: $publicationId }) {
publishable {
publishedOnPublication(publicationId: $publicationId)
}
userErrors {
field
message
}
}
}
{
"productId": "gid://shopify/Product/999999999",
"publicationId": "gid://shopify/Publication/762454635"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment