Module: Static::SignIn

Defined in:
lib/static.rb

Constant Summary collapse

Name =
"signIn"
Query =
<<-EOS
  mutation signIn($oidcAppId: String, $userPoolId: String, $email: String, $password: String, $phone: String, $unionid: String, $username: String){
  signIn(oidcAppId: $oidcAppId, userPoolId: $userPoolId, email: $email, password: $password, phone: $phone, unionid: $unionid, username: $username){
      sub
      birthdate
      family_name
      gender
      given_name
      locale
      middle_name
      name
      nickname
      picture
      preferred_username
      profile
      updated_at
      website
      zoneinfo
      username
      _id
      company
      browser
      device
      logins_count
      register_method
      blocked
      last_ip
      register_in_userpool
      last_login
      signed_up
      email
      email_verified
      phone_number
      phone_number_verified
      token
      access_token
      id_token
      refresh_token
      expires_in
      token_type
      scope
  }
}
EOS