immich/server/src/queries/view.repository.sql

30 lines
686 B
MySQL
Raw Normal View History

-- NOTE: This file is auto generated by ./sql-generator
2025-01-09 11:15:41 -05:00
-- ViewRepository.getUniqueOriginalPaths
select distinct
substring("assets"."originalPath", $1) as "directoryPath"
from
"assets"
where
"ownerId" = $2::uuid
and "isVisible" = $3
and "isArchived" = $4
and "deletedAt" is null
-- ViewRepository.getAssetsByOriginalPath
2025-01-09 11:15:41 -05:00
select
"assets".*,
2025-01-22 15:17:42 -05:00
to_json("exif") as "exifInfo"
2025-01-09 11:15:41 -05:00
from
"assets"
left join "exif" on "assets"."id" = "exif"."assetId"
where
"ownerId" = $1::uuid
and "isVisible" = $2
and "isArchived" = $3
and "deletedAt" is null
and "originalPath" like $4
and "originalPath" not like $5
order by
regexp_replace("assets"."originalPath", $6, $7) asc