Graphql Commerce API stats field not working for search queries

Which version of Graphql Commerce API are you using ?

It should be part of the QueryHint field

query {
  findItemsByKeyword(
   ...
  ) {
    queryHint {
      statsFields {
        listPrice {
          max
          min
        }
        purchasePrice {
          max
          min
        }
      }
    }
  }
}