How to get uid of a node from graphql

Can uid only be queried through DQL or is there a way to retrieve the uid of a node using Graphql

The id: ID! used in the GraphQL Schema is UID based.

I have removed id: ID! from the schema because having both
id: ID! and
email: String! @id
was causing a problem in the checkUserPassword query where it was prioritizing ID over email

Sorry, I guess that’s the only way in GraphQL tho.