A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
I have looked in "shopify.dev" how to get the expected date of publication of products, but could not solve the problem.
I tried the following code in the "Shopify GraphiQL App", but it returns the time the product status was changed to "active", not the date the product is scheduled to be published.
query MyQuery {
products(first: 14) {
edges {
node {
title
resourcePublicationOnCurrentPublication {
publication {
name
id
}
publishDate
isPublished
}
}
}
}
}
"publishDate" retrieved from "publications" or "resourcePublicationsV2" gave the same result.
Can you help?
Thank you.