How to get Total daily fees (USD) data for cardano?

kindly provide the query for more clarity

Here’s a sample query

query MyQuery {
  cardano(network: cardano) {
    transactions(
      date: {after: "2023-02-20T10:46:46.909Z", before: "2023-02-23T10:46:46.909Z"}
    ) {
      feeValue(calculate: sum)
      date {
        date
      }
    }
  }
}