login
Authenticate user and establish secure session.
Validates user credentials and returns a complete authentication session including access tokens, refresh tokens, and user information. The session enables access to protected resources and user-specific functionality.
Possible errors:
- USER_NOT_FOUND_ERROR: User account does not exist
login(
input: LoginInput!
): Login!
Arguments
login.input
● LoginInput!
non-null input
User login credentials including email and password.
Contains the email address and password required for user authentication.
Type
Login
object
Authentication response containing login session information.
Returned after successful user authentication, providing session details and user information.