Authentication
1. GraphQL Request
mutation Login {
login(email: "[email protected]", password: "secure_password") {
token
}
}
2. Set Bearer Token via Header
authorization: Bearer [TOKEN_FROM_STEP_ONE]Possible Errors
401
Last updated