Authentication

Authentication is the process of verifying that a user is who they claim to be and should be handled by the framework you are using. Some already have a built-in authentication system (like Django); others, you have to provide it manually. It's not Strawberry's responsibility to authenticate the user, but it can be used to create a mutation that handles the authentication's process. It's also very important not to confuse authentication with authorization: authorization determines what an authenticated user can do or which data they can access. In Strawberry, this is managed with Permissions classes.

Let's see how to put together these concepts with an example. First, we define a login mutation where we authenticate credentials and return LoginSucces or LoginError types depending on whether the user was successfully authenticated or not.

import strawberry
from .types import User
@strawberry.type
class LoginSuccess:
user: User
@strawberry.type
class LoginError:
message: str
LoginResult = strawberry.union("LoginResult", (LoginSuccess, LoginError))
@strawberry.type
class Mutation:
@strawberry.field
def login(self, username: str, password: str) -> LoginResult:
# Your domain-specific authentication logic would go here
user = ...
if user is None:
return LoginError(message="Something went wrong")
return LoginSuccess(user=User(username=username))

Was this helpful?

Edit on Github

Newsletter 💌

Do you want to receive the latest updates on Strawberry? Subscribe to our newsletter!