# themePublish - admin-graphql - MUTATION Version: 2024-10 ## Description Publishes a theme. ### Access Scopes The user needs write_themes and an exemption from Shopify to modify themes. If you think that your app is eligible for an exemption and should have access to this API, then you can [submit an exception request](https://docs.google.com/forms/d/e/1FAIpQLSfZTB1vxFC5d1-GPdqYunWRGUoDcOheHQzfK2RoEFEHrknt5g/viewform). ## Arguments * [id](/docs/api/admin-graphql/2024-10/scalars/ID): ID! - ID of the theme to be published. ## Returns * [theme](/docs/api/admin-graphql/2024-10/objects/OnlineStoreTheme): OnlineStoreTheme The theme that was published. * [userErrors](/docs/api/admin-graphql/2024-10/objects/ThemePublishUserError): ThemePublishUserError! The list of errors that occurred from executing the mutation. ## Examples ### Modify an existing Theme Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation themePublish($id: ID!) { themePublish(id: $id) { theme { id } userErrors { code field message } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/OnlineStoreTheme/908009861\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation themePublish($id: ID!) {\n themePublish(id: $id) {\n theme {\n id\n }\n userErrors {\n code\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/OnlineStoreTheme/908009861\"\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n mutation themePublish($id: ID!) {\n themePublish(id: $id) {\n theme {\n id\n }\n userErrors {\n code\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/OnlineStoreTheme/908009861\"\n}\n\nresponse = client.query(query: query, variables: variables)\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n mutation themePublish($id: ID!) {\n themePublish(id: $id) {\n theme {\n id\n }\n userErrors {\n code\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/OnlineStoreTheme/908009861\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation themePublish($id: ID!) {\n themePublish(id: $id) {\n theme {\n id\n }\n userErrors {\n code\n field\n message\n }\n }\n}" #### Graphql Input { "id": "gid://shopify/OnlineStoreTheme/908009861" } #### Graphql Response { "data": { "themePublish": { "theme": { "id": "gid://shopify/OnlineStoreTheme/908009861" }, "userErrors": [] } } } ### Publish a theme Curl example: "curl -X POST \\\nhttps://your-development-store.myshopify.com/admin/api/2024-10/graphql.json \\\n-H 'Content-Type: application/json' \\\n-H 'X-Shopify-Access-Token: {access_token}' \\\n-d '{\n\"query\": \"mutation themePublish($id: ID!) { themePublish(id: $id) { theme { id name } userErrors { field message } } }\",\n \"variables\": {\n \"id\": \"gid://shopify/OnlineStoreTheme/908009861\"\n }\n}'\n" Node example: "const client = new shopify.clients.Graphql({session});\nconst data = await client.query({\n data: {\n \"query\": `mutation themePublish($id: ID!) {\n themePublish(id: $id) {\n theme {\n id\n name\n }\n userErrors {\n field\n message\n }\n }\n }`,\n \"variables\": {\n \"id\": \"gid://shopify/OnlineStoreTheme/908009861\"\n },\n },\n});\n" Ruby example: "session = ShopifyAPI::Auth::Session.new(\n shop: \"your-development-store.myshopify.com\",\n access_token: access_token\n)\nclient = ShopifyAPI::Clients::Graphql::Admin.new(\n session: session\n)\n\nquery = <<~QUERY\n mutation themePublish($id: ID!) {\n themePublish(id: $id) {\n theme {\n id\n name\n }\n userErrors {\n field\n message\n }\n }\n }\nQUERY\n\nvariables = {\n \"id\": \"gid://shopify/OnlineStoreTheme/908009861\"\n}\n\nresponse = client.query(query: query, variables: variables)\n" Remix example: "const { admin } = await authenticate.admin(request);\n\nconst response = await admin.graphql(\n `#graphql\n mutation themePublish($id: ID!) {\n themePublish(id: $id) {\n theme {\n id\n name\n }\n userErrors {\n field\n message\n }\n }\n }`,\n {\n variables: {\n \"id\": \"gid://shopify/OnlineStoreTheme/908009861\"\n },\n },\n);\n\nconst data = await response.json();\n" Graphql query: "mutation themePublish($id: ID!) {\n themePublish(id: $id) {\n theme {\n id\n name\n }\n userErrors {\n field\n message\n }\n }\n}" #### Graphql Input { "id": "gid://shopify/OnlineStoreTheme/908009861" } #### Graphql Response { "data": { "themePublish": { "theme": { "id": "gid://shopify/OnlineStoreTheme/908009861", "name": "Sandbox" }, "userErrors": [] } } }