When querying collections using the endpoint:
https:/{storename}.myshopify.com/admin/api/2023-01/graphql.json
and the request body:
{
collections(first: 50 sortKey: UPDATED_AT reverse:true) {
edges {
cursor
node {
title
legacyResourceId
productsCount
productsCount
updatedAt
}
}
pageInfo {
hasNextPage
hasPreviousPage
}
}
}
the response is a single collection Home Page, containing only one product. Our client insists that they have other collections set up. Using this query with a different url and access code works for our other clients’ Shopify shops. Is there any way that their collections could be set up incorrectly so that we are not pulling them?