Hey everyone,
Hey guys, So as title says, I’ve got this error popping out when I run my app on one merchants store. “Access denied for productsCount field. Required access: read_products access scope.”
I’ve verified that this access scope is on my app, which it is, and I verified the details of the app on the merchants app settings and I can find the access scope there as shown by screenshot.
I tried the same api route where the error happens on both of my dev stores and also another merchants that I still have access to their store and everything works perfectly with no problems. But for this merchant the error happens.
I verified my database, I have session data about the merchant so the content is there. I use shopify api version of “2025-07” below is the query where the error happens
);
const productsCount = await client.request(/* GraphQL */
`
query {
productsCount(limit: null) {
count
}
productVariantsCount(limit: null) {
count
}
}
`);
I would appreciate any advice.
thanks these are my scopes SHOPIFY_API_SCOPES=read_products,write_products,write_pixels,read_customer_events,write_files,write_app_proxy (edited)

