Is there a way to compare two immich users and check duplicate items?
I want to compare two immich users and see the duplicate photos/videos. Is there a way to do so?
docker compose logs docsdocker compose ps docs/close command, and re-open it later if needed.select checksum from assets t1
where (select count(*) from assets t2
where t1.checksum = t2.checksum and t1."deletedAt" is null and t2."deletedAt" is null) > 1
order by "fileCreatedAt"