Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 616 Bytes

File metadata and controls

22 lines (19 loc) · 616 Bytes
copyright Copyright IBM Corp. 2017
link get-my-user-information
is published

Get my user information

We also have a handy GraphQL query for when you’re feeling introspective. This will allow you to get information about the user you are currently logged in as.

query getMyself {
  me {
    id
    displayName
    email
  }
}