OBJECT

SdHuman

INTERNAL -- Data on the Human Object

link GraphQL Schema definition

  • type SdHuman {
  • # The API key for the human
  • api_key: String
  • # The time when the human was created
  • created_at: String
  • # The time when the human is currently signed in
  • current_sign_in_at: String
  • # The IP address of the human when they signed in to the current session
  • current_sign_in_ip: String
  • # The current user for the human
  • current_user: SdUser
  • # The ID of the current user for the human
  • current_user_id: String
  • # The time when the human was deleted
  • deleted_at: String
  • # The email of the human
  • email: String
  • # The unique identifier of the human
  • id: ID!
  • # The time when the human last signed in
  • last_sign_in_at: String
  • # The IP address of the human when they last signed in
  • last_sign_in_ip: String
  • # The namespace of the human
  • namespace: String
  • # Whether the human requires 2FA
  • requires_2fa: String
  • # The time when the human reset their password
  • reset_password_sent_at: String
  • # The User with the ID matching the Search Term
  • #
  • # Arguments
  • # user_id: User ID
  • searched_user(user_id: ID): SdUser
  • # The number of times the human has signed in
  • sign_in_count: String
  • # The time when the human switched providers
  • switched_provider_at: String
  • # The time when the human was last updated
  • updated_at: String
  • # The list of users for the human
  • #
  • # Arguments
  • # cursor: cursor for pagination
  • # org_name: name or partial name of an organization
  • user_collection(cursor: String, org_name: String): SdUserCollection
  • # The username of the human
  • username: String
  • }