Shopify Search Product /Get Product using SKU
Daniel Lee
Product ID in shopify is a hidden data. It is not easy to work with. Searching Product and Get Product should allow SKU data input.
Log In
Joe Sasson
This is a limitation related to the Shopify API, nothing to do with Make.com
The way I handle this is by using the "Make a Graphql API call" and then put in the following query, replacing the {sku} with the actual sku value:
{
productVariants(first: 10, query: "sku:{sku}") {
edges {
cursor
node {
id
sku
displayName
price
inventoryItem {
id
}
product {
id
}
}
}
}
}
You can modify the section inside the "node {}" to include any information that you want about the product.
Glad to clarify if you need more help.
Photo Viewer
View photos in a modal
OIC Make Administrator
I agree. Product and Variant ID fields are really difficult to get from Shopify. None of the product exports they provide include those details. Being able to Get products by SKU would be VERY useful
It would also be helpful if Get Product enabled wild card searching, like the search product in Shopify provides