All things Shopify and commerce
This is my query for orders
const ordersQuery = gql` query { customer(customerAccessToken: "${accessToken}") { orders(first: 250, sortKey: PROCESSED_AT, reverse: ${sort}) { edges { node { id name fulfillmentStatus successfulFulfillments (first: 250) { fulfillmentLineItems(first: 250) { edges { node { quantity lineItem { variant { product{ id } } } } } } } lineItems(first: 250) { edges { node { title quantity currentQuantity variant { id title weight weightUnit image{ src altText } price { amount currencyCode } product{ id title vendor featuredImage{ src altText } description metafield(namespace: "custom",key: "bucket") { key value namespace } } unitPrice { amount currencyCode } } originalTotalPrice{ amount currencyCode } } } } } } } } } `;
Now, we want order fulfillment date.
Suppose in one order we have 3 products. Product #1 is fulfilled, now we need the fulfillment date of the product.
Is it possible with the above query? Or else what can be the alternative solution for this? How to find order fulfillment date?
If more clarification needs, please let us know.
Thanks in advance.
Hey Community! As the holiday season unfolds, we want to extend heartfelt thanks to a...
By JasonH Dec 6, 2024Dropshipping, a high-growth, $226 billion-dollar industry, remains a highly dynamic bus...
By JasonH Nov 27, 2024Hey Community! It’s time to share some appreciation and celebrate what we have accomplis...
By JasonH Nov 14, 2024