diff --git a/services/auth.py b/services/auth.py index 3ad7114b..e116c7af 100644 --- a/services/auth.py +++ b/services/auth.py @@ -10,7 +10,7 @@ async def check_auth(req): print(f"[services.auth] checking auth token: {token}") gql = { - "query": "query { validate_jwt_token( params: ValidateJWTTokenInput) { is_valid claims } }", + "query": "query { validate_jwt_token( params: ValidateJWTTokenInput!) { is_valid claims } }", "variables": {"params": {"token_type": "access_token", "token": token}}, }