mirror of
https://github.com/zitadel/zitadel.git
synced 2025-07-15 18:38:35 +00:00
7 lines
144 B
SQL
7 lines
144 B
SQL
SELECT "position", change_date, payload
|
|
FROM eventstore.snapshots
|
|
WHERE instance_id = $1
|
|
AND snapshot_type = $2
|
|
AND aggregate_id = $3
|
|
;
|