Fetch updatedAt field using Graphql API

Hi All,
It looks like GraphQl Api only provides publishedAt, firstPublishedAt fields in the sys type.
Is there a way to fetch the updatedAt field?


We can get this structure using JDK

attrs: 
 createdAt : ""
 updatedAt: ""
  "sys": {
    "createdAt": "...",
    "updatedAt": "...",
    ...

But for this particular query, we should use GraphQl, and I don’t see the possibility of fetching such a field.
I appreciate any help you can provide.