feat: implement relation management system with controllers, services, repositories, and corresponding API documentation.
Build and Release / release (push) Successful in 1m47s

This commit is contained in:
2026-06-06 17:22:03 +07:00
parent 7ff15ae662
commit fd8d413760
15 changed files with 706 additions and 192 deletions
+6
View File
@@ -248,3 +248,9 @@ SELECT
)::uuid[] AS replay_ids
FROM geometries
WHERE geometries.bound_with = $1 AND geometries.is_deleted = false;
-- name: GetGeometryIDsByEntityIDs :many
SELECT entity_id, geometry_id
FROM entity_geometries
WHERE entity_id = ANY($1::uuid[]);
+6
View File
@@ -132,3 +132,9 @@ ORDER BY created_at DESC;
SELECT entity_id, wiki_id
FROM entity_wikis
WHERE entity_id = ANY($1::uuid[]);
-- name: GetEntityIDsByWikiIDs :many
SELECT wiki_id, entity_id
FROM entity_wikis
WHERE wiki_id = ANY($1::uuid[]);