Have your say in Community Polls: What was/is your greatest motivation to start your own business?
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.

standardizedProductType ignored in productCreate and productUpdate

Solved

standardizedProductType ignored in productCreate and productUpdate

JohanCL
Shopify Partner
1 0 1

I'm trying to create and update products with the new standard product types, using the GraphQL APIs. The standardizedProductType parameter is verified and accepted, but the product type is not actually set or updated on the products. I just tried with this mutation query in the Shopify GraphiQL App:

 

 

mutation {
  productUpdate(
    input: {
      id:"gid://shopify/Product/6749070262332"
      standardizedProductType:{
        productTaxonomyNodeId: "gid://shopify/ProductTaxonomyNode/888"
      }
      title: "Updating the title too"
    }
  ) {
    product {
      standardizedProductType {
        productTaxonomyNode {
          fullName
          id
        }
      }
      title
    }
  }
}

 

 

The title of the product is indeed updated, but the standard product type stays the same as it was before, be it unassigned for a new product or whatever I set it to manually in the admin interface.

 

Has anyone had any luck using this new API? I'm using the latest stable API version (2022-01), but the pre-release versions also don't work for me.

Accepted Solution (1)

csam
Shopify Staff (Retired)
267 40 51

This is an accepted solution.

Hi @JohanCL and all - 

 

Thanks for reaching out about this. Our developers were able to put out a fix for this today, and the field should now be working as expected. 

 

Regards,

To learn more visit the Shopify Help Center or the Community Blog.

View solution in original post

Replies 3 (3)

Matthew10
Shopify Partner
3 0 0

same issue here

alessmar
Shopify Partner
6 0 0

I have the same issue, I tried API version 2022-01, 2022-4 and unstable and both productCreate or productUpdate mutations ignore standardizedProductType, below an example:

 

 

mutation {
	productCreate(
		input: {
			title: "Foo bar"
			vendor: "Acme"
			standardizedProductType: {
				productTaxonomyNodeId: "gid://shopify/ProductTaxonomyNode/301"
			}
		}
	) {
		product {
			id
			title
			standardizedProductType {
				productTaxonomyNode {
					id
				}
			}
		}
		userErrors {
			field
			message
		}
	}
}

 

 

I get:

 

{
	"data": {
		"productCreate": {
			"product": {
				"id": "gid:\/\/shopify\/Product\/7233567457441",
				"title": "Foo bar",
				"standardizedProductType": null
			},
			"userErrors": []
		}
	},
	"extensions": {
		"cost": {
			"requestedQueryCost": 12,
			"actualQueryCost": 11,
			"throttleStatus": {
				"maximumAvailable": 1000.0,
				"currentlyAvailable": 989,
				"restoreRate": 50.0
			}
		}
	}
}

csam
Shopify Staff (Retired)
267 40 51

This is an accepted solution.

Hi @JohanCL and all - 

 

Thanks for reaching out about this. Our developers were able to put out a fix for this today, and the field should now be working as expected. 

 

Regards,

To learn more visit the Shopify Help Center or the Community Blog.