GraphQL Admin API - Get Discount Code list/creation date

I want to use the API to do what you can do through the admin dashboard which is to go to Discounts and then click on a Discount code, then click View all codes. That shows a list of all the individually generated codes and what Date they were created.

Using the API, I can get a list of all discount codes but I can’t figure out how to get the individual codes under that code and the dates they were created. To try to be more clear, I have a discount code called WELCOME and it has 100 generated codes such as CXV154G2 and each of those has a Created On date.

So I found that if I did this query:

{
  codeDiscountNode(id: "gid://shopify/DiscountCodeNode/11111111111") {
    codeDiscount {
      ... on DiscountCodeBasic {
        codeCount
        codes(first: 100) {
          edges {
            node {
              code
              id
            }
          }
        }
        customerSelection {
          __typename
        }
        startsAt
        endsAt
      }
    }
  }
}

then I would get a list of codes and ids (of type DiscountRedeemCode) for the codes. The problem is that I still don’t see how to get the Created On date.