How to get pre-order products?
Pass the releasedSince
argument with a future date to the
S_products
query and the system will return you the list
of products to be released after a given date.
Example
query {
S_products(
releasedSince: "2030-01-01T00:00:00"
) {
edges {
node {
id
name
...
}
}
}
}