Covers all questions related to inventory management, order fulfillment, and shipping.
Hi, is there a way to get the fulfillment createdAt field on Order Bulk Operation query ? I need that field because it will act as the shipmentDate of my third party app. To check, I also need the fulfillmentLineItems so that I can verify what line item is being fulfilled.
I have tried this query :
orders {
edges {
node {
fulfillments {
createdAt
fulfillmentLineItems {
edges {
node {
lineItem {
id
}
}
}
}
}
}
But this will return an error : "Queries that contain a connection field within
a list field are not currently supported."
Is there any other possible ways to achieve this ?