I’m relatively new to working with the Shopify API, so I apologize if I’m missing something obvious. I’m building a website that needs to display products from my Shopify store, specifically those that are synced from Printful.
I’m using the Storefront API to query a collection that should contain these products, but I’m getting empty results even though the products exist and are visible in my Shopify admin. Importantly, these products are functioning perfectly on my actual Shopify storefront and customers are successfully purchasing them - the issue is only with accessing them via the API.
When I query the Printful API, I can see all my synced products:
{
"code": 200,
"result": [
{
"id": 123456789,
"external_id": "1234567890123",
"name": "Product Name 1",
"variants": 9,
"synced": 9,
"thumbnail_url": "https://cdn.shopify.com/s/files/1/0000/0000/0000/files/product-image.jpg",
"is_ignored": false
},
// Additional products...
],
"paging": {
"total": 8,
"limit": 20,
"offset": 0
}
}
However, when I query my Shopify collection via the Storefront API, I get an empty products array:
{
collection: {
title: 'Clothing / Merch',
onlineStoreUrl: 'https://example-store.myshopify.com/collections/clothing-merch',
products: { edges: [], pageInfo: [Object] }
}
}
Here’s the query I’m using:
query getCollectionById($id: ID!) {
collection(id: $id) {
title
onlineStoreUrl
products(first: 50) {
edges {
node {
id
title
handle
availableForSale
description
onlineStoreUrl
featuredImage {
url (transform: {
maxHeight: 400,
maxWidth: 400,
crop: CENTER
})
}
priceRange {
minVariantPrice {
amount
currencyCode
}
}
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
This query works fine for non-synced products. I’m not trying to create a full storefront, just list products and link to them on my website.
- Is there a known issue with Printful-synced products not being accessible via the Storefront API?
- Are there specific settings that need to be enabled for Printful products to be accessible via the API?
- Is there an alternative approach to get product URLs and basic information for Printful-synced products?
- Should I be using the Admin API instead for this specific use case?
Any insights or guidance would be greatly appreciated!