mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 17:24:56 +03:00
66 lines
1.1 KiB
SQL
66 lines
1.1 KiB
SQL
-- NOTE: This file is auto generated by ./sql-generator
|
|
|
|
-- LibraryRepository.get
|
|
select
|
|
"library".*
|
|
from
|
|
"library"
|
|
where
|
|
"library"."id" = $1
|
|
and "library"."deletedAt" is null
|
|
|
|
-- LibraryRepository.getAll
|
|
select
|
|
"library".*
|
|
from
|
|
"library"
|
|
where
|
|
"library"."deletedAt" is null
|
|
order by
|
|
"createdAt" asc
|
|
|
|
-- LibraryRepository.getAllDeleted
|
|
select
|
|
"library".*
|
|
from
|
|
"library"
|
|
where
|
|
"library"."deletedAt" is not null
|
|
order by
|
|
"createdAt" asc
|
|
|
|
-- LibraryRepository.getStatistics
|
|
select
|
|
count(*) filter (
|
|
where
|
|
(
|
|
"asset"."type" = $1
|
|
and "asset"."visibility" != $2
|
|
)
|
|
) as "photos",
|
|
count(*) filter (
|
|
where
|
|
(
|
|
"asset"."type" = $3
|
|
and "asset"."visibility" != $4
|
|
)
|
|
) as "videos",
|
|
coalesce(sum("asset_exif"."fileSizeInByte"), $5) as "usage"
|
|
from
|
|
"library"
|
|
inner join "asset" on "asset"."libraryId" = "library"."id"
|
|
left join "asset_exif" on "asset_exif"."assetId" = "asset"."id"
|
|
where
|
|
"library"."id" = $6
|
|
group by
|
|
"library"."id"
|
|
select
|
|
0::int as "photos",
|
|
0::int as "videos",
|
|
0::int as "usage",
|
|
0::int as "total"
|
|
from
|
|
"library"
|
|
where
|
|
"library"."id" = $1
|