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

12 lines
177 B
SQL

select
id,
creation_date,
login_client,
issuer,
acs,
relay_state,
binding
from projections.saml_requests
where id = $1 and instance_id = $2
limit 1;