I’d like to confirm whether this is an issue with my implementation or if it’s a bug in Shopify itself.
My query is as follows,
query($id: ID!, $after: String) {
collection(id: $id) {
productsCount{
count
}
products(first: 100,
after: $after,
) {
edges {
cursor
node {
id
status
onlineStoreUrl
resourcePublications(first:100,onlyPublished:false){
nodes{
isPublished
publication{
name
}
}
}
title
}
}
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
}
}
}
the response is as below:
and the returned result aligns with what is documented in Shopify (see the attached screenshot).
However, this contradicts the description of the published field provided below.
Where am I misunderstanding this? Please guide me.

