Files
zitadel/apps/api/internal/query/auth_request_by_id.sql
2025-08-05 15:20:32 -07:00

16 lines
245 B
SQL

select
id,
creation_date,
login_client,
client_id,
scope,
redirect_uri,
prompt,
ui_locales,
login_hint,
max_age,
hint_user_id
from projections.auth_requests
where id = $1 and instance_id = $2
limit 1;