Add lot info to inventory change log in GraphQL API

Hi!

The new inventory change log report in app.shiphero.com has the lot name and expiration dates.

Is it possible to add these fields to the GraphQL API as well?

Thanks!

Best regards

Hi @pedro

Thank you for your feedback; it is a great feature request.

We’ll make sure to propose this to the product team.

Have a nice day!

1 Like

Hi @Luisperrone

At eDarkstore, we would like to reopen this conversation. Have you had a chance to review Pedro’s request?

This would be very helpful for us, as we rely on the inventory change logs to flag risky or rare inventory changes. Having the batch information included would allow us to ensure that the FEFO picking is being properly followed.

Looking forward to your feedback.

Best regards,

Hello @agarcia,

We still haven’t publicly announced this but we recently added those fields, you can get them like this:

{    inventory_changes{
        request_id
        complexity
        data {
            pageInfo {
                hasNextPage
                hasPreviousPage
                startCursor
                endCursor
            }
            edges {
                node {
                    sku
                    previous_on_hand
                    change_in_on_hand
                    reason
                    location_id
                    created_at
                    lot_id          <--- New field
                    lot_name        <--- New field
                    lot_expiration  <--- New field
                    location {                       
                        name
                        zone
                        pickable
                        is_cart
                        pick_priority
                        created_at
                    }
                }
            }
        }
    }
}

Great, thanks @tomasfd !!

1 Like