Skip to content

signInInput

Autogenerated input type of signIn

Fields

deprecated DO NOT USE
email · String · User email
username · String · Username
allow_multiple_api_keys · Boolean · When true, an additional API key will be generated (versus replacing the old one)
generate_api_token · Boolean · When true, an API key will be returned, versus a session token. This replaces an existing key.
namespace · String · The authentication namespace to sign into. Whitelabels can have their own separated auth namespace.
password · String · Password
reset_token · String · Reset Token
timezone · String · Timezone of user
token · String · API Token

Used By

Definition

"""
Autogenerated input type of signIn
"""
input signInInput {
"""
DO NOT USE
"""
clientMutationId: String @deprecated(reason: "DO NOT USE")
"""
User email
"""
email: String
"""
Username
"""
username: String
"""
When true, an additional API key will be generated (versus replacing the old one)
"""
allow_multiple_api_keys: Boolean = false
"""
When true, an API key will be returned, versus a session token. This replaces an existing key.
"""
generate_api_token: Boolean = false
"""
The authentication namespace to sign into. Whitelabels can have their own separated auth namespace.
"""
namespace: String = "healthie"
"""
Password
"""
password: String
"""
Reset Token
"""
reset_token: String
"""
Timezone of user
"""
timezone: String
"""
API Token
"""
token: String
}