feat: implement relation management system with controllers, services, repositories, and corresponding API documentation.
Build and Release / release (push) Successful in 1m47s
Build and Release / release (push) Successful in 1m47s
This commit is contained in:
@@ -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[]);
|
||||
|
||||
|
||||
@@ -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[]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user