Picks_by_day not returning time

Hello!

This may primarily be for @seba, but I noticed that the picks_per_day query has stopped returning the time the pick happened. A few weeks ago it was returning the time just fine, but now the time on all records is coming back as 00:00:00. Here is the query I’m using:

query($date_from: Date, $analyze: Boolean, $cursor: String) {
    picks_per_day(date_from: $date_from, analyze: $analyze) {
        request_id
        complexity
        data(after: $cursor, first: 10, sort:"created_at") {
            pageInfo {
                hasPreviousPage
                hasNextPage
                endCursor
            }
            edges {
                cursor
                node {
                    id
                    line_item_id
                    user_first_name
                    user_last_name
                    order_number
                    sku
                    picked_quantity
                    inventory_bin
                    barcode_scanned
                    created_at
                }
            }
        }
    }
}

With the variables:

{"date_from": "2019-08-23", "cursor": ""}

Thanks,
Jeremy

@jeremyw yes you are right, and should be fixed now, sorry about that.
There should be another fix in place, the hasNextPage should now be working as expected and not returning true always.

2 Likes

Thanks for the quick fix and update, @seba! And that’s great to hear about the hasNextPage.