Retrieving updatedAt and createdAt fields for images

Hello, we are migrating from the REST API to GraphQL and are having trouble finding the updatedAt and createdAt dates for product images. These fields were available with the REST API, but the only place I can find them in the documentation for GraphQL is on the MediaImage object, but this object doesn’t seem to be referenced by any queries or connections. The Media and Image objects which are connected to Product do not have these properties. Any idea how we can do this? TIA!

The fields are here on the Media Image Media - GraphQL Admin

When you have the media node, you need to do this to access the media image type on the media interface. You understand why here Learn GraphQL: Interfaces & Unions

{
  __typename
  ... on MediaImage {
    createdAt
    updatedAt
  }
}