Another question about Convex caching, this time related to the built-in caching of queries on the back end. Say I run a given query multiple times in relatively quick succession; e.g. I'm flipping between routes in my Remix app, and each route runs a different query. The data isn't changing between route changes, so the later queries return cached data.
How do those cached query returns impact my bandwidth stats? In other words, if Convex returns cached data for a query, does that still count towards my bandwidth, or is the bandwidth only affected when a query returns non-cached data?