How do I get the Fulfillment.createdAt field on Order Bulk Operation Query.

How do I get the Fulfillment.createdAt field on Order Bulk Operation Query.

Veesy
Shopify Partner
13 0 4

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 ?

Replies 0 (0)