aboutsummaryrefslogtreecommitdiff
path: root/crates/secd/store/pg/sql/find_identity.sql
diff options
context:
space:
mode:
Diffstat (limited to 'crates/secd/store/pg/sql/find_identity.sql')
-rw-r--r--crates/secd/store/pg/sql/find_identity.sql14
1 files changed, 8 insertions, 6 deletions
diff --git a/crates/secd/store/pg/sql/find_identity.sql b/crates/secd/store/pg/sql/find_identity.sql
index f4c9cbf..135ff9a 100644
--- a/crates/secd/store/pg/sql/find_identity.sql
+++ b/crates/secd/store/pg/sql/find_identity.sql
@@ -1,9 +1,11 @@
select
- identity_public_id,
- data,
- i.created_at
+ identity_public_id
+ , data
+ , i.created_at
+ , i.deleted_at
from secd.identity i
-join secd.identity_email ie using (identity_id)
-join secd.email e using (email_id)
+join secd.identity_email_validation iev using (identity_id)
+join secd.email_validation ev using (email_validation_id)
+join secd.email e using (email_id)
where (($1 is null) or (i.identity_public_id = $1))
-and (($2 is null) or (e.address = $2))
+and (($2 is null) or (e.address = $2));