mirror of
https://github.com/immich-app/immich.git
synced 2025-12-25 01:11:43 +03:00
23 lines
558 B
MySQL
23 lines
558 B
MySQL
|
|
-- NOTE: This file is auto generated by ./sql-generator
|
||
|
|
|
||
|
|
-- MapRepository.getMapMarkers
|
||
|
|
select
|
||
|
|
"id",
|
||
|
|
"exif"."latitude" as "lat",
|
||
|
|
"exif"."longitude" as "lon",
|
||
|
|
"exif"."city",
|
||
|
|
"exif"."state",
|
||
|
|
"exif"."country"
|
||
|
|
from
|
||
|
|
"assets"
|
||
|
|
inner join "exif" on "assets"."id" = "exif"."assetId"
|
||
|
|
and "exif"."latitude" is not null
|
||
|
|
and "exif"."longitude" is not null
|
||
|
|
left join "albums_assets_assets" on "assets"."id" = "albums_assets_assets"."assetsId"
|
||
|
|
where
|
||
|
|
"isVisible" = $1
|
||
|
|
and "deletedAt" is null
|
||
|
|
and "ownerId" in ($2)
|
||
|
|
order by
|
||
|
|
"fileCreatedAt" desc
|