Get a User
Get the details of an existing user.
{ ID: String! } query GetUser($ID: String!){ user(ID: $ID){ ID Email EmailVerified FirstName LastName ProfilePictureURL CreatedAt UpdatedAt } } { "data": { "user": { "ID": "user_01J5Z8MJ2VBXQZ1B82NQDD0H7Q", "Email": "test@gmail.com", "EmailVerified": false, "FirstName": "", "LastName": "", "ProfilePictureURL": "", "CreatedAt": "2024-08-23T09:21:17.401Z", "UpdatedAt": "2024-08-23T09:21:17.401Z" } } }